]> git.sur5r.net Git - cc65/blob - src/cc65/main.c
Added HuC6280 cpu (will be treated as a 65C02)
[cc65] / src / cc65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                             cc65 main program                             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2004 Ullrich von Bassewitz                                       */
10 /*               Römerstraße 52                                              */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <string.h>
38 #include <stdlib.h>
39 #include <errno.h>
40
41 /* common */
42 #include "abend.h"
43 #include "chartype.h"
44 #include "cmdline.h"
45 #include "cpu.h"
46 #include "debugflag.h"
47 #include "fname.h"
48 #include "mmodel.h"
49 #include "print.h"
50 #include "segnames.h"
51 #include "target.h"
52 #include "tgttrans.h"
53 #include "version.h"
54 #include "xmalloc.h"
55
56 /* cc65 */
57 #include "asmcode.h"
58 #include "compile.h"
59 #include "codeopt.h"
60 #include "error.h"
61 #include "global.h"
62 #include "incpath.h"
63 #include "input.h"
64 #include "macrotab.h"
65 #include "scanner.h"
66 #include "standard.h"
67 #include "segments.h"
68
69
70
71 /*****************************************************************************/
72 /*                                   Code                                    */
73 /*****************************************************************************/
74
75
76
77 static void Usage (void)
78 /* Print usage information to stderr */
79 {
80     printf ("Usage: %s [options] file\n"
81             "Short options:\n"
82             "  -Cl\t\t\tMake local variables static\n"
83             "  -Dsym[=defn]\t\tDefine a symbol\n"
84             "  -E\t\t\tStop after the preprocessing stage\n"
85             "  -I dir\t\tSet an include directory search path\n"
86             "  -O\t\t\tOptimize code\n"
87             "  -Oi\t\t\tOptimize code, inline more code\n"
88             "  -Or\t\t\tEnable register variables\n"
89             "  -Os\t\t\tInline some known functions\n"
90             "  -T\t\t\tInclude source as comment\n"
91             "  -V\t\t\tPrint the compiler version number\n"
92             "  -W\t\t\tSuppress warnings\n"
93             "  -d\t\t\tDebug mode\n"
94             "  -g\t\t\tAdd debug info to object file\n"
95             "  -h\t\t\tHelp (this text)\n"
96             "  -j\t\t\tDefault characters are signed\n"
97             "  -mm model\t\tSet the memory model\n"
98             "  -o name\t\tName the output file\n"
99             "  -r\t\t\tEnable register variables\n"
100             "  -t sys\t\tSet the target system\n"
101             "  -v\t\t\tIncrease verbosity\n"
102             "\n"
103             "Long options:\n"
104             "  --add-source\t\tInclude source as comment\n"
105             "  --bss-name seg\tSet the name of the BSS segment\n"
106             "  --check-stack\t\tGenerate stack overflow checks\n"
107             "  --code-name seg\tSet the name of the CODE segment\n"
108             "  --codesize x\t\tAccept larger code by factor x\n"
109             "  --cpu type\t\tSet cpu type (6502, 65c02)\n"
110             "  --create-dep\t\tCreate a make dependency file\n"
111             "  --data-name seg\tSet the name of the DATA segment\n"
112             "  --debug\t\tDebug mode\n"
113             "  --debug-info\t\tAdd debug info to object file\n"
114             "  --debug-opt name\tDebug optimization steps\n"
115             "  --disable-opt name\tDisable an optimization step\n"
116             "  --enable-opt name\tEnable an optimization step\n"
117             "  --forget-inc-paths\tForget include search paths\n"
118             "  --help\t\tHelp (this text)\n"
119             "  --include-dir dir\tSet an include directory search path\n"
120             "  --list-opt-steps\tList all optimizer steps and exit\n"
121             "  --memory-model model\tSet the memory model\n"
122             "  --register-space b\tSet space available for register variables\n"
123             "  --register-vars\tEnable register variables\n"
124             "  --rodata-name seg\tSet the name of the RODATA segment\n"
125             "  --signed-chars\tDefault characters are signed\n"
126             "  --standard std\tLanguage standard (c89, c99, cc65)\n"
127             "  --static-locals\tMake local variables static\n"
128             "  --target sys\t\tSet the target system\n"
129             "  --verbose\t\tIncrease verbosity\n"
130             "  --version\t\tPrint the compiler version number\n"
131             "  --writable-strings\tMake string literals writable\n",
132             ProgName);
133 }
134
135
136
137 static void cbmsys (const char* sys)
138 /* Define a CBM system */
139 {
140     DefineNumericMacro ("__CBM__", 1);
141     DefineNumericMacro (sys, 1);
142 }
143
144
145
146 static void SetSys (const char* Sys)
147 /* Define a target system */
148 {
149     switch (Target = FindTarget (Sys)) {
150
151         case TGT_NONE:
152             break;
153
154         case TGT_MODULE:
155             AbEnd ("Cannot use `module' as a target for the compiler");
156             break;
157
158         case TGT_ATARI:
159             DefineNumericMacro ("__ATARI__", 1);
160             break;
161
162         case TGT_C16:
163             cbmsys ("__C16__");
164             break;
165
166         case TGT_C64:
167             cbmsys ("__C64__");
168             break;
169
170         case TGT_VIC20:
171             cbmsys ("__VIC20__");
172             break;
173
174         case TGT_C128:
175             cbmsys ("__C128__");
176             break;
177
178         case TGT_ACE:
179             cbmsys ("__ACE__");
180             break;
181
182         case TGT_PLUS4:
183             cbmsys ("__PLUS4__");
184             break;
185
186         case TGT_CBM510:
187             cbmsys ("__CBM510__");
188             break;
189
190         case TGT_CBM610:
191             cbmsys ("__CBM610__");
192             break;
193
194         case TGT_PET:
195             cbmsys ("__PET__");
196             break;
197
198         case TGT_BBC:
199             DefineNumericMacro ("__BBC__", 1);
200             break;
201
202         case TGT_APPLE2:
203             DefineNumericMacro ("__APPLE2__", 1);
204             break;
205
206         case TGT_APPLE2ENH:
207             DefineNumericMacro ("__APPLE2ENH__", 1);
208             break;
209
210         case TGT_GEOS:
211             /* Do not handle as a CBM system */
212             DefineNumericMacro ("__GEOS__", 1);
213             break;
214
215         case TGT_LUNIX:
216             DefineNumericMacro ("__LUNIX__", 1);
217             break;
218
219         case TGT_ATMOS:
220             DefineNumericMacro ("__ATMOS__", 1);
221             break;
222
223         case TGT_NES:
224             DefineNumericMacro ("__NES__", 1);
225             break;
226
227         case TGT_SUPERVISION:
228             DefineNumericMacro ("__SUPERVISION__", 1);
229             break;
230
231         case TGT_LYNX:
232             DefineNumericMacro ("__LYNX__", 1);
233             break;
234
235         default:
236             AbEnd ("Unknown target system type %d", Target);
237     }
238
239     /* Initialize the translation tables for the target system */
240     TgtTranslateInit ();
241 }
242
243
244
245 static void DoCreateDep (const char* OutputName)
246 /* Create the dependency file */
247 {
248     /* Make the dependency file name from the output file name */
249     char* DepName = MakeFilename (OutputName, ".u");
250
251     /* Open the file */
252     FILE* F = fopen (DepName, "w");
253     if (F == 0) {
254         Fatal ("Cannot open dependency file `%s': %s", DepName, strerror (errno));
255     }
256
257     /* Write the dependencies to the file */
258     WriteDependencies (F, OutputName);
259
260     /* Close the file, check for errors */
261     if (fclose (F) != 0) {
262         remove (DepName);
263         Fatal ("Cannot write to dependeny file (disk full?)");
264     }
265
266     /* Free the name */
267     xfree (DepName);
268 }
269
270
271
272 static void DefineSym (const char* Def)
273 /* Define a symbol on the command line */
274 {
275     const char* P = Def;
276
277     /* The symbol must start with a character or underline */
278     if (Def [0] != '_' && !IsAlpha (Def [0])) {
279         InvDef (Def);
280     }
281
282     /* Check the symbol name */
283     while (IsAlNum (*P) || *P == '_') {
284         ++P;
285     }
286
287     /* Do we have a value given? */
288     if (*P != '=') {
289         if (*P != '\0') {
290             InvDef (Def);
291         }
292         /* No value given. Define the macro with the value 1 */
293         DefineNumericMacro (Def, 1);
294     } else {
295         /* We have a value, P points to the '=' character. Since the argument
296          * is const, create a copy and replace the '=' in the copy by a zero
297          * terminator.
298          */
299         char* Q;
300         unsigned Len = strlen (Def)+1;
301         char* S = (char*) xmalloc (Len);
302         memcpy (S, Def, Len);
303         Q = S + (P - Def);
304         *Q++ = '\0';
305
306         /* Define this as a macro */
307         DefineTextMacro (S, Q);
308
309         /* Release the allocated memory */
310         xfree (S);
311     }
312 }
313
314
315
316 static void CheckSegName (const char* Seg)
317 /* Abort if the given name is not a valid segment name */
318 {
319     /* Print an error and abort if the name is not ok */
320     if (!ValidSegName (Seg)) {
321         AbEnd ("Segment name `%s' is invalid", Seg);
322     }
323 }
324
325
326
327 static void OptAddSource (const char* Opt attribute ((unused)),
328                           const char* Arg attribute ((unused)))
329 /* Add source lines as comments in generated assembler file */
330 {
331     AddSource = 1;
332 }
333
334
335
336 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
337 /* Handle the --bss-name option */
338 {
339     /* Check for a valid name */
340     CheckSegName (Arg);
341
342     /* Set the name */
343     SetSegName (SEG_BSS, Arg);
344 }
345
346
347
348 static void OptCheckStack (const char* Opt attribute ((unused)),
349                            const char* Arg attribute ((unused)))
350 /* Handle the --check-stack option */
351 {
352     IS_Set (&CheckStack, 1);
353 }
354
355
356
357 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
358 /* Handle the --code-name option */
359 {
360     /* Check for a valid name */
361     CheckSegName (Arg);
362
363     /* Set the name */
364     SetSegName (SEG_CODE, Arg);
365 }
366
367
368
369 static void OptCodeSize (const char* Opt, const char* Arg)
370 /* Handle the --codesize option */
371 {
372     unsigned Factor;
373     char     BoundsCheck;
374
375     /* Numeric argument expected */
376     if (sscanf (Arg, "%u%c", &Factor, &BoundsCheck) != 1 ||
377         Factor < 10 || Factor > 1000) {
378         AbEnd ("Argument for %s is invalid", Opt);
379     }
380     IS_Set (&CodeSizeFactor, Factor);
381 }
382
383
384
385 static void OptCreateDep (const char* Opt attribute ((unused)),
386                           const char* Arg attribute ((unused)))
387 /* Handle the --create-dep option */
388 {
389     CreateDep = 1;
390 }
391
392
393
394 static void OptCPU (const char* Opt, const char* Arg)
395 /* Handle the --cpu option */
396 {
397     /* Find the CPU from the given name */
398     CPU = FindCPU (Arg);
399     if (CPU != CPU_6502 && CPU != CPU_6502X && CPU != CPU_65SC02 &&
400         CPU != CPU_65C02 && CPU != CPU_65816 && CPU != CPU_HUC6280) {
401         AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
402     }
403 }
404
405
406
407 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
408 /* Handle the --data-name option */
409 {
410     /* Check for a valid name */
411     CheckSegName (Arg);
412
413     /* Set the name */
414     SetSegName (SEG_DATA, Arg);
415 }
416
417
418
419 static void OptDebug (const char* Opt attribute ((unused)),
420                       const char* Arg attribute ((unused)))
421 /* Compiler debug mode */
422 {
423     ++Debug;
424 }
425
426
427
428 static void OptDebugInfo (const char* Opt attribute ((unused)),
429                           const char* Arg attribute ((unused)))
430 /* Add debug info to the object file */
431 {
432     DebugInfo = 1;
433 }
434
435
436
437 static void OptDebugOpt (const char* Opt attribute ((unused)), const char* Arg)
438 /* Debug optimization steps */
439 {
440     char Buf [128];
441     char* Line;
442
443     /* Open the file */
444     FILE* F = fopen (Arg, "r");
445     if (F == 0) {
446         AbEnd ("Cannot open `%s': %s", Arg, strerror (errno));
447     }
448
449     /* Read line by line, ignore empty lines and switch optimization
450      * steps on/off.
451      */
452     while (fgets (Buf, sizeof (Buf), F) != 0) {
453
454         /* Remove trailing control chars. This will also remove the
455          * trailing newline.
456          */
457         unsigned Len = strlen (Buf);
458         while (Len > 0 && IsControl (Buf[Len-1])) {
459             --Len;
460         }
461         Buf[Len] = '\0';
462
463         /* Get a pointer to the buffer and remove leading white space */
464         Line = Buf;
465         while (IsBlank (*Line)) {
466             ++Line;
467         }
468
469         /* Check the first character and enable/disable the step or
470          * ignore the line
471          */
472         switch (*Line) {
473
474             case '\0':
475             case '#':
476             case ';':
477                 /* Empty or comment line */
478                 continue;
479
480             case '-':
481                 DisableOpt (Line+1);
482                 break;
483
484             case '+':
485                 ++Line;
486                 /* FALLTHROUGH */
487
488             default:
489                 EnableOpt (Line);
490                 break;
491
492         }
493
494     }
495
496     /* Close the file, no error check here since we were just reading and
497      * this is only a debug function.
498      */
499     (void) fclose (F);
500 }
501
502
503
504 static void OptDisableOpt (const char* Opt attribute ((unused)), const char* Arg)
505 /* Disable an optimization step */
506 {
507     DisableOpt (Arg);
508 }
509
510
511
512 static void OptEnableOpt (const char* Opt attribute ((unused)), const char* Arg)
513 /* Enable an optimization step */
514 {
515     EnableOpt (Arg);
516 }
517
518
519
520 static void OptForgetIncPaths (const char* Opt attribute ((unused)),
521                                const char* Arg attribute ((unused)))
522 /* Forget all currently defined include paths */
523 {
524     ForgetAllIncludePaths ();
525 }
526
527
528
529 static void OptHelp (const char* Opt attribute ((unused)),
530                      const char* Arg attribute ((unused)))
531 /* Print usage information and exit */
532 {
533     Usage ();
534     exit (EXIT_SUCCESS);
535 }
536
537
538
539 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
540 /* Add an include search path */
541 {
542     AddIncludePath (Arg, INC_SYS | INC_USER);
543 }
544
545
546
547 static void OptListOptSteps (const char* Opt attribute ((unused)),
548                              const char* Arg attribute ((unused)))
549 /* List all optimizer steps */
550 {
551     /* List the optimizer steps */
552     ListOptSteps (stdout);
553
554     /* Terminate */
555     exit (EXIT_SUCCESS);
556 }
557
558
559
560 static void OptMemoryModel (const char* Opt, const char* Arg)
561 /* Set the memory model */
562 {
563     mmodel_t M;
564
565     /* Check the current memory model */
566     if (MemoryModel != MMODEL_UNKNOWN) {
567         AbEnd ("Cannot use option `%s' twice", Opt);
568     }
569
570     /* Translate the memory model name and check it */
571     M = FindMemoryModel (Arg);
572     if (M == MMODEL_UNKNOWN) {
573         AbEnd ("Unknown memory model: %s", Arg);
574     } else if (M == MMODEL_HUGE) {
575         AbEnd ("Unsupported memory model: %s", Arg);
576     }
577
578     /* Set the memory model */
579     SetMemoryModel (M);
580 }
581
582
583
584 static void OptRegisterSpace (const char* Opt, const char* Arg)
585 /* Handle the --register-space option */
586 {
587     /* Numeric argument expected */
588     if (sscanf (Arg, "%u", &RegisterSpace) != 1 || RegisterSpace > 256) {
589         AbEnd ("Argument for option %s is invalid", Opt);
590     }
591 }
592
593
594
595 static void OptRegisterVars (const char* Opt attribute ((unused)),
596                              const char* Arg attribute ((unused)))
597 /* Handle the --register-vars option */
598 {
599     IS_Set (&EnableRegVars, 1);
600 }
601
602
603
604 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
605 /* Handle the --rodata-name option */
606 {
607     /* Check for a valid name */
608     CheckSegName (Arg);
609
610     /* Set the name */
611     SetSegName (SEG_RODATA, Arg);
612 }
613
614
615
616 static void OptSignedChars (const char* Opt attribute ((unused)),
617                             const char* Arg attribute ((unused)))
618 /* Make default characters signed */
619 {
620     IS_Set (&SignedChars, 1);
621 }
622
623
624
625 static void OptStandard (const char* Opt, const char* Arg)
626 /* Handle the --standard option */
627 {
628     /* Find the standard from the given name */
629     standard_t Std = FindStandard (Arg);
630     if (Std == STD_UNKNOWN) {
631         AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
632     } else if (IS_Get (&Standard) != STD_UNKNOWN) {
633         AbEnd ("Option %s given more than once", Opt);
634     } else {
635         IS_Set (&Standard, Std);
636     }
637 }
638
639
640
641 static void OptStaticLocals (const char* Opt attribute ((unused)),
642                              const char* Arg attribute ((unused)))
643 /* Place local variables in static storage */
644 {
645     IS_Set (&StaticLocals, 1);
646 }
647
648
649
650 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
651 /* Set the target system */
652 {
653     SetSys (Arg);
654 }
655
656
657
658 static void OptVerbose (const char* Opt attribute ((unused)),
659                         const char* Arg attribute ((unused)))
660 /* Increase verbosity */
661 {
662     ++Verbosity;
663 }
664
665
666
667 static void OptVersion (const char* Opt attribute ((unused)),
668                         const char* Arg attribute ((unused)))
669 /* Print the assembler version */
670 {
671     fprintf (stderr,
672              "cc65 V%u.%u.%u\n",
673              VER_MAJOR, VER_MINOR, VER_PATCH);
674 }
675
676
677
678 static void OptWritableStrings (const char* Opt attribute ((unused)),
679                                 const char* Arg attribute ((unused)))
680 /* Make string literals writable */
681 {
682     IS_Set (&WritableStrings, 1);
683 }
684
685
686
687 int main (int argc, char* argv[])
688 {
689     /* Program long options */
690     static const LongOpt OptTab[] = {
691         { "--add-source",       0,      OptAddSource            },
692         { "--bss-name",         1,      OptBssName              },
693         { "--check-stack",      0,      OptCheckStack           },
694         { "--code-name",        1,      OptCodeName             },
695         { "--codesize",         1,      OptCodeSize             },
696         { "--cpu",              1,      OptCPU                  },
697         { "--create-dep",       0,      OptCreateDep            },
698         { "--data-name",        1,      OptDataName             },
699         { "--debug",            0,      OptDebug                },
700         { "--debug-info",       0,      OptDebugInfo            },
701         { "--debug-opt",        1,      OptDebugOpt             },
702         { "--disable-opt",      1,      OptDisableOpt           },
703         { "--enable-opt",       1,      OptEnableOpt            },
704         { "--forget-inc-paths", 0,      OptForgetIncPaths       },
705         { "--help",             0,      OptHelp                 },
706         { "--include-dir",      1,      OptIncludeDir           },
707         { "--list-opt-steps",   0,      OptListOptSteps         },
708         { "--memory-model",     1,      OptMemoryModel          },
709         { "--register-space",   1,      OptRegisterSpace        },
710         { "--register-vars",    0,      OptRegisterVars         },
711         { "--rodata-name",      1,      OptRodataName           },
712         { "--signed-chars",     0,      OptSignedChars          },
713         { "--standard",         1,      OptStandard             },
714         { "--static-locals",    0,      OptStaticLocals         },
715         { "--target",           1,      OptTarget               },
716         { "--verbose",          0,      OptVerbose              },
717         { "--version",          0,      OptVersion              },
718         { "--writable-strings", 0,      OptWritableStrings      },
719     };
720
721     unsigned I;
722
723     /* Initialize the output file name */
724     const char* OutputFile = 0;
725     const char* InputFile  = 0;
726
727     /* Initialize the cmdline module */
728     InitCmdLine (&argc, &argv, "cc65");
729
730     /* Initialize the default segment names */
731     InitSegNames ();
732
733     /* Initialize the include search paths */
734     InitIncludePaths ();
735
736     /* Parse the command line */
737     I = 1;
738     while (I < ArgCount) {
739
740         const char* P;
741
742         /* Get the argument */
743         const char* Arg = ArgVec[I];
744
745         /* Check for an option */
746         if (Arg [0] == '-') {
747
748             switch (Arg [1]) {
749
750                 case '-':
751                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
752                     break;
753
754                 case 'd':
755                     OptDebug (Arg, 0);
756                     break;
757
758                 case 'h':
759                 case '?':
760                     OptHelp (Arg, 0);
761                     break;
762
763                 case 'g':
764                     OptDebugInfo (Arg, 0);
765                     break;
766
767                 case 'j':
768                     OptSignedChars (Arg, 0);
769                     break;
770
771                 case 'o':
772                     OutputFile = GetArg (&I, 2);
773                     break;
774
775                 case 'r':
776                     OptRegisterVars (Arg, 0);
777                     break;
778
779                 case 't':
780                     OptTarget (Arg, GetArg (&I, 2));
781                     break;
782
783                 case 'u':
784                     OptCreateDep (Arg, 0);
785                     break;
786
787                 case 'v':
788                     OptVerbose (Arg, 0);
789                     break;
790
791                 case 'C':
792                     P = Arg + 2;
793                     while (*P) {
794                         switch (*P++) {
795                             case 'l':
796                                 OptStaticLocals (Arg, 0);
797                                 break;
798                             default:
799                                 UnknownOption (Arg);
800                                 break;
801                         }
802                     }
803                     break;
804
805                 case 'D':
806                     DefineSym (GetArg (&I, 2));
807                     break;
808
809                 case 'E':
810                     PreprocessOnly = 1;
811                     break;
812
813                 case 'I':
814                     OptIncludeDir (Arg, GetArg (&I, 2));
815                     break;
816
817                 case 'O':
818                     IS_Set (&Optimize, 1);
819                     P = Arg + 2;
820                     while (*P) {
821                         switch (*P++) {
822                             case 'i':
823                                 IS_Set (&CodeSizeFactor, 200);
824                                 break;
825                             case 'r':
826                                 IS_Set (&EnableRegVars, 1);
827                                 break;
828                             case 's':
829                                 IS_Set (&InlineStdFuncs, 1);
830                                 break;
831                         }
832                     }
833                     break;
834
835                 case 'T':
836                     OptAddSource (Arg, 0);
837                     break;
838
839                 case 'V':
840                     OptVersion (Arg, 0);
841                     break;
842
843                 case 'W':
844                     IS_Set (&WarnDisable, 1);
845                     break;
846
847                 default:
848                     UnknownOption (Arg);
849                     break;
850             }
851         } else {
852             if (InputFile) {
853                 fprintf (stderr, "additional file specs ignored\n");
854             } else {
855                 InputFile = Arg;
856             }
857         }
858
859         /* Next argument */
860         ++I;
861     }
862
863     /* Did we have a file spec on the command line? */
864     if (InputFile == 0) {
865         AbEnd ("No input files");
866     }
867
868     /* Create the output file name if it was not explicitly given */
869     if (OutputFile == 0) {
870         OutputFile = MakeFilename (InputFile, ".s");
871     }
872
873     /* If no CPU given, use the default CPU for the target */
874     if (CPU == CPU_UNKNOWN) {
875         if (Target != TGT_UNKNOWN) {
876             CPU = DefaultCPU[Target];
877         } else {
878             CPU = CPU_6502;
879         }
880     }
881
882     /* If no memory model was given, use the default */
883     if (MemoryModel == MMODEL_UNKNOWN) {
884         SetMemoryModel (MMODEL_NEAR);
885     }
886
887     /* If no language standard was given, use the default one */
888     if (IS_Get (&Standard) == STD_UNKNOWN) {
889         IS_Set (&Standard, STD_DEFAULT);
890     }
891
892     /* Go! */
893     Compile (InputFile);
894
895     /* Create the output file if we didn't had any errors */
896     if (ErrorCount == 0 || Debug) {
897
898         /* Open the file */
899         FILE* F = fopen (OutputFile, "w");
900         if (F == 0) {
901             Fatal ("Cannot open output file `%s': %s", OutputFile, strerror (errno));
902         }
903         Print (stdout, 1, "Opened output file `%s'\n", OutputFile);
904
905         /* Write the output to the file */
906         WriteOutput (F);
907         Print (stdout, 1, "Wrote output to `%s'\n", OutputFile);
908
909         /* Close the file, check for errors */
910         if (fclose (F) != 0) {
911             remove (OutputFile);
912             Fatal ("Cannot write to output file (disk full?)");
913         }
914         Print (stdout, 1, "Closed output file `%s'\n", OutputFile);
915
916         /* Create dependencies if requested */
917         if (CreateDep) {
918             DoCreateDep (OutputFile);
919             Print (stdout, 1, "Creating dependeny file\n");
920         }
921
922     }
923
924     /* Return an apropriate exit code */
925     return (ErrorCount > 0)? EXIT_FAILURE : EXIT_SUCCESS;
926 }
927
928
929