]> git.sur5r.net Git - cc65/blobdiff - src/cc65/asmcode.h
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / src / cc65 / asmcode.h
index b43cfce8d095851aaeaa784a9207c5c4eac957e9..248381224f20c948f58762ebc0785f557b61c120 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                asmcode.h                                 */
+/*                                 asmcode.h                                 */
 /*                                                                           */
-/*         Assembler output code handling for the cc65 C compiler           */
+/*          Assembler output code handling for the cc65 C compiler           */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -46,7 +46,7 @@
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -60,7 +60,7 @@ typedef struct {
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -68,6 +68,9 @@ typedef struct {
 void GetCodePos (CodeMark* M);
 /* Get a marker pointing to the current output position */
 
+void RemoveCodeRange (const CodeMark* Start, const CodeMark* End);
+/* Remove all code between two code markers */
+
 void RemoveCode (const CodeMark* M);
 /* Remove all code after the given code marker */
 
@@ -85,8 +88,5 @@ void WriteAsmOutput (void);
 
 
 /* End of asmcode.h */
-#endif
-
-
-
 
+#endif