]> Shamusworld >> Repos - rmac/blobdiff - rmac.h
Fix for #210 - 6502 mode with -fr working
[rmac] / rmac.h
diff --git a/rmac.h b/rmac.h
index 5f230909af12860ee90cc3564c634ea737847c71..00dcd3ba49c92cb9d6b6c194076adbe7c94bc4ef 100644 (file)
--- a/rmac.h
+++ b/rmac.h
@@ -198,6 +198,7 @@ LOD,                                // DSP 56001 object format
 P56,                           // DSP 56001 object format
 XEX,                           // COM/EXE/XEX/whatever a8 object format
 RAW,                           // Output at absolute address
+C64PRG,                                // C64 .PRG format
 };
 
 // Assembler token
@@ -261,6 +262,7 @@ PTR
 #define SIZP         0x0080            // .p (FPU pakced decimal real)
 #define SIZQ         0x0100            // .q (quad word)
 
+// Extended attributes
 #define EQUATEDREG   0x0008            // Equated register symbol
 #define UNDEF_EQUR   0x0010
 #define EQUATEDCC    0x0020
@@ -318,6 +320,7 @@ extern int *regbase;
 extern int *regtab;
 extern int *regcheck;
 extern int *regaccept;
+extern uint32_t used_architectures;
 
 // Exported functions
 void strtoupper(char * s);