]> git.sur5r.net Git - cc65/blobdiff - src/ca65/objfile.h
Add translation from PETSCII to screen codes.
[cc65] / src / ca65 / objfile.h
index 364cab97fa369613a56f87e8be7de03de21dee86..c1d148725d32385c27f4aa20cf2f89d81026960b 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                objfile.h                                 */
+/*                                 objfile.h                                 */
 /*                                                                           */
-/*        Object file writing routines for the ca65 macroassembler          */
+/*         Object file writing routines for the ca65 macroassembler          */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 1998-2011, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 
-#include "../common/filepos.h"
+/* common */
+#include "filepos.h"
+#include "strbuf.h"
 
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -54,6 +56,12 @@ void ObjOpen (void);
 void ObjClose (void);
 /* Write an update header and close the object file. */
 
+unsigned long ObjGetFilePos (void);
+/* Get the current file position */
+
+void ObjSetFilePos (unsigned long Pos);
+/* Set the file position */
+
 void ObjWrite8 (unsigned V);
 /* Write an 8 bit value to the file */
 
@@ -66,9 +74,15 @@ void ObjWrite24 (unsigned long V);
 void ObjWrite32 (unsigned long V);
 /* Write a 32 bit value to the file */
 
+void ObjWriteVar (unsigned long V);
+/* Write a variable sized value to the file in special encoding */
+
 void ObjWriteStr (const char* S);
 /* Write a string to the object file */
 
+void ObjWriteBuf (const StrBuf* S);
+/* Write a string to the object file */
+
 void ObjWriteData (const void* Data, unsigned Size);
 /* Write literal data to the file */
 
@@ -111,11 +125,38 @@ void ObjStartDbgSyms (void);
 void ObjEndDbgSyms (void);
 /* Mark the end of the debug symbol section */
 
+void ObjStartLineInfos (void);
+/* Mark the start of the line info section */
 
+void ObjEndLineInfos (void);
+/* Mark the end of the line info section */
 
-/* End of objfile.h */
+void ObjStartStrPool (void);
+/* Mark the start of the string pool section */
 
-#endif
+void ObjEndStrPool (void);
+/* Mark the end of the string pool section */
+
+void ObjStartAssertions (void);
+/* Mark the start of the assertion table */
 
+void ObjEndAssertions (void);
+/* Mark the end of the assertion table */
 
+void ObjStartScopes (void);
+/* Mark the start of the scope table */
 
+void ObjEndScopes (void);
+/* Mark the end of the scope table */
+
+void ObjStartSpans (void);
+/* Mark the start of the span table */
+
+void ObjEndSpans (void);
+/* Mark the end of the span table */
+
+
+
+/* End of objfile.h */
+
+#endif