]> git.sur5r.net Git - cc65/blobdiff - src/od65/dump.h
Changed the startup module and the linker config for the C16 to use the common
[cc65] / src / od65 / dump.h
index 42ac38aae1cc69590d394b1b76f149f0eb250a91..43d96a7e14a2ab2a8f289ad9f575e68134040fc2 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 2000-2002 Ullrich von Bassewitz                                       */
+/*               Wacholderweg 14                                             */
+/*               D-70597 Stuttgart                                           */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 void DumpObjHeader (FILE* F, unsigned long Offset);
 /* Dump the header of the given object file */
-           
+
 void DumpObjOptions (FILE* F, unsigned long Offset);
 /* Dump the file options */
 
+void DumpObjFiles (FILE* F, unsigned long Offset);
+/* Dump the source files */
+
+void DumpObjSegments (FILE* F, unsigned long Offset);
+/* Dump the segments in the object file */
+
+void DumpObjImports (FILE* F, unsigned long Offset);
+/* Dump the imports in the object file */
+
+void DumpObjExports (FILE* F, unsigned long Offset);
+/* Dump the exports in the object file */
+
+void DumpObjDbgSyms (FILE* F, unsigned long Offset);
+/* Dump the debug symbols from an object file */
+
+void DumpObjLineInfo (FILE* F, unsigned long Offset);
+/* Dump the line infos from an object file */
+
+void DumpObjSegSize (FILE* F, unsigned long Offset);
+/* Dump the sizes of the segment in the object file */
+
 
 
 /* End of dump.h */