]> git.sur5r.net Git - cc65/commitdiff
Set the target system also for the assembler
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 21 Aug 2000 21:20:16 +0000 (21:20 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 21 Aug 2000 21:20:16 +0000 (21:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@294 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cl65/main.c

index 819dd0029f0723fbb0b15921817891242eb35614..78b6ae33959ab6dcd0a08e10c12eb282c157ecaa 100644 (file)
@@ -471,6 +471,9 @@ static void Assemble (const char* File)
     /* Remember the current assembler argument count */
     unsigned ArgCount = CA65.ArgCount;
 
+    /* Set the target system */
+    CmdSetTarget (&CA65, Target);
+
     /* If we won't link, this is the final step. In this case, set the
      * output name.
      */
@@ -500,7 +503,7 @@ static void Assemble (const char* File)
 }
 
 
-
+                    
 static void Compile (const char* File)
 /* Compile the given file */
 {
@@ -871,7 +874,7 @@ int main (int argc, char* argv [])
                    break;
 
                case 't':
-                   /* Set target system - compiler and linker */
+                   /* Set target system - compiler, assembler and linker */
                    OptTarget (Arg, GetArg (&I, 2));
                    break;