]> Shamusworld >> Repos - rmac/blobdiff - procln.c
Fix to prevent defined registers/CCs from being exported in the symtab.
[rmac] / procln.c
index 4af12bd9000d95ab2001f85534a71c0b1a14670e..52513e0be04f7d42bbc4c7dc77c5f35b2dbbabb8 100644 (file)
--- a/procln.c
+++ b/procln.c
@@ -1,7 +1,7 @@
 //
 // RMAC - Renamed Macro Assembler for all Atari computers
 // PROCLN.C - Line Processing
-// Copyright (C) 199x Landon Dyer, 2011-2021 Reboot and Friends
+// Copyright (C) 199x Landon Dyer, 2011-2022 Reboot and Friends
 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
 // Source utilised with the kind permission of Landon Dyer
 //
@@ -117,11 +117,9 @@ LONG amsktab[0124] = {
        M_FPSCR                 // 0123
 };                                     // 0123 length
 
-
 // Function prototypes
 int HandleLabel(char *, int);
 
-
 //
 // Initialize line processor
 //
@@ -133,7 +131,6 @@ void InitLineProcessor(void)
        ifent0.if_state = 0;
 }
 
-
 //
 // Line processor
 //
@@ -825,7 +822,6 @@ When checking to see if it's already been equated, issue a warning.
        goto loop;
 }
 
-
 //
 // Handle the creation of labels
 //
@@ -876,4 +872,3 @@ int HandleLabel(char * label, int labelType)
 
        return 0;
 }
-