]> git.sur5r.net Git - cc65/commitdiff
Change intermediate file name for grc from .ss to .s
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 15 Jul 2000 08:45:31 +0000 (08:45 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 15 Jul 2000 08:45:31 +0000 (08:45 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@148 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cl65/main.c

index a62d461ec7eeb8e267b7bf44a07a44c3701f259b..e8cfca57359777526e871849eceeed48259642c6 100644 (file)
@@ -163,7 +163,6 @@ static unsigned GetFileType (const char* File)
     } FileTypes [] = {
        {   ".c",       FILETYPE_C      },
        {   ".s",       FILETYPE_ASM    },
-               {   ".ss",      FILETYPE_ASM    },
        {   ".asm",     FILETYPE_ASM    },
        {   ".o",       FILETYPE_OBJ    },
        {   ".obj",     FILETYPE_OBJ    },
@@ -561,9 +560,9 @@ static void CompileRes (const char* File)
     unsigned ArgCount = GRC.ArgCount;
 
     /* The assembler file name will be the name of the source file
-     * with .grc replaced by ".ss".
+     * with .grc replaced by ".s".
      */
-    AsmName = MakeFilename (File, ".ss");
+    AsmName = MakeFilename (File, ".s");
 
     /* Add the file as argument for the resource compiler */
     CmdAddArg (&GRC, File);
@@ -949,3 +948,4 @@ int main (int argc, char* argv [])
 
 
 
+