The od65 utility dumps contents of one or more ca65 generated object file to standard output. It has no cross-version compatibility, so you have to use a version that matches the version of ca65 used to create the object files.
The program may be called as follows:
---------------------------------------------------------------------------
Usage: od65 [options] file [options] [file]
Short options:
-h Help (this text)
-H Dump the object file header
-S Dump segments sizes
-V Print the version number and exit
Long options:
--dump-all Dump all object file information
--dump-dbgsyms Dump debug symbols
--dump-exports Dump exported symbols
--dump-files Dump the source files
--dump-header Dump the object file header
--dump-imports Dump imported symbols
--dump-lineinfo Dump line information
--dump-options Dump object file options
--dump-segments Dump the segments in the file
--dump-segsize Dump segments sizes
--help Help (this text)
--version Print the version number and exit
---------------------------------------------------------------------------
Here is a description of all the command line options:
--dump-allThis will output all information, od65 is able to process. The option is a
shortcut for specifying all the other --dump options.
--dump-dbgsymsDump all debug symbols contained in the object file.
--dump-exportsDump all exported symbols contained in the object file.
--dump-filesDump the file table contained in the object file.
-H, --dump-headerDump the object file header.
--dump-importsDump the list of imported symbols contained in the object file.
--dump-lineinfoDump the line info contained in the object file.
--dump-segmentsDump the list of segments contained in the object file.
--dump-scopesDump the scope (lexical level) information contained in the object file.
-S, --dump-segsizeDump the sizes of all segments contained in the object file. This option is quite useful to determine the effect of measures that increase or decrease code size.
-h, --helpPrint the short option summary shown above.
-V, --versionPrint the version number of the compiler. When submitting a bug report, please include the operating system you're using, and the compiler version.