]> Shamusworld >> Repos - rmac/blobdiff - rmac.c
Files missed in the last commit. :-P
[rmac] / rmac.c
diff --git a/rmac.c b/rmac.c
index f88f849a77963ed5ad5b2842dd83b7d1eb2ee2a9..d9158f4c82e63016daa6bd8c4e36655ece011c1d 100644 (file)
--- a/rmac.c
+++ b/rmac.c
@@ -163,6 +163,7 @@ void DisplayHelp(void)
                "  -f[format]        Output object file format\n"
                "                    a: ALCYON\n"
                "                    b: BSD (use this for Jaguar)\n"
+               "                    c: PRG (C64)\n"
                "                    e: ELF\n"
                "                    p: P56 (use this for DSP56001 only)\n"
                "                    l: LOD (use this for DSP56001 only)\n"
@@ -443,6 +444,10 @@ int Process(int argc, char ** argv)
                                case 'B':
                                        obj_format = BSD;
                                        break;
+                               case 'c':
+                               case 'C':
+                                       obj_format = C64PRG;
+                                       break;
                                case 'e':                       // -fe = ELF
                                case 'E':
                                        obj_format = ELF;