]> git.sur5r.net Git - cc65/blob - src/cc65/main.c
bb8864698f5ed7c7c21d245ef35fbcae47d7e6f8
[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 "segments.h"
67
68
69
70 /*****************************************************************************/
71 /*                                   Code                                    */
72 /*****************************************************************************/
73
74
75
76 static void Usage (void)
77 /* Print usage information to stderr */
78 {
79     fprintf (stderr,
80              "Usage: %s [options] file\n"
81              "Short options:\n"
82              "  -A\t\t\tStrict ANSI mode\n"
83              "  -Cl\t\t\tMake local variables static\n"
84              "  -Dsym[=defn]\t\tDefine a symbol\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              "  --ansi\t\tStrict ANSI mode\n"
106              "  --bss-name seg\tSet the name of the BSS segment\n"
107              "  --check-stack\t\tGenerate stack overflow checks\n"
108              "  --code-name seg\tSet the name of the CODE segment\n"
109              "  --codesize x\t\tAccept larger code by factor x\n"
110              "  --cpu type\t\tSet cpu type (6502, 65c02)\n"
111              "  --create-dep\t\tCreate a make dependency file\n"
112              "  --data-name seg\tSet the name of the DATA segment\n"
113              "  --debug\t\tDebug mode\n"
114              "  --debug-info\t\tAdd debug info to object file\n"
115              "  --debug-opt name\tDebug optimization steps\n"
116              "  --disable-opt name\tDisable an optimization step\n"
117              "  --enable-opt name\tEnable an optimization step\n"
118              "  --forget-inc-paths\tForget include search paths\n"
119              "  --help\t\tHelp (this text)\n"
120              "  --include-dir dir\tSet an include directory search path\n"
121              "  --list-opt-steps\tList all optimizer steps and exit\n"
122              "  --memory-model model\tSet the memory model\n"
123              "  --register-space b\tSet space available for register variables\n"
124              "  --register-vars\tEnable register variables\n"
125              "  --rodata-name seg\tSet the name of the RODATA segment\n"
126              "  --signed-chars\tDefault characters are signed\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         default:
232             AbEnd ("Unknown target system type %d", Target);
233     }
234
235     /* Initialize the translation tables for the target system */
236     TgtTranslateInit ();
237 }
238
239
240
241 static void DoCreateDep (const char* OutputName)
242 /* Create the dependency file */
243 {
244     /* Make the dependency file name from the output file name */
245     char* DepName = MakeFilename (OutputName, ".u");
246
247     /* Open the file */
248     FILE* F = fopen (DepName, "w");
249     if (F == 0) {
250         Fatal ("Cannot open dependency file `%s': %s", DepName, strerror (errno));
251     }
252
253     /* Write the dependencies to the file */
254     WriteDependencies (F, OutputName);
255
256     /* Close the file, check for errors */
257     if (fclose (F) != 0) {
258         remove (DepName);
259         Fatal ("Cannot write to dependeny file (disk full?)");
260     }
261
262     /* Free the name */
263     xfree (DepName);
264 }
265
266
267
268 static void DefineSym (const char* Def)
269 /* Define a symbol on the command line */
270 {
271     const char* P = Def;
272
273     /* The symbol must start with a character or underline */
274     if (Def [0] != '_' && !IsAlpha (Def [0])) {
275         InvDef (Def);
276     }
277
278     /* Check the symbol name */
279     while (IsAlNum (*P) || *P == '_') {
280         ++P;
281     }
282
283     /* Do we have a value given? */
284     if (*P != '=') {
285         if (*P != '\0') {
286             InvDef (Def);
287         }
288         /* No value given. Define the macro with the value 1 */
289         DefineNumericMacro (Def, 1);
290     } else {
291         /* We have a value, P points to the '=' character. Since the argument
292          * is const, create a copy and replace the '=' in the copy by a zero
293          * terminator.
294          */
295         char* Q;
296         unsigned Len = strlen (Def)+1;
297         char* S = (char*) xmalloc (Len);
298         memcpy (S, Def, Len);
299         Q = S + (P - Def);
300         *Q++ = '\0';
301
302         /* Define this as a macro */
303         DefineTextMacro (S, Q);
304
305         /* Release the allocated memory */
306         xfree (S);
307     }
308 }
309
310
311
312 static void CheckSegName (const char* Seg)
313 /* Abort if the given name is not a valid segment name */
314 {
315     /* Print an error and abort if the name is not ok */
316     if (!ValidSegName (Seg)) {
317         AbEnd ("Segment name `%s' is invalid", Seg);
318     }
319 }
320
321
322
323 static void OptAddSource (const char* Opt attribute ((unused)),
324                           const char* Arg attribute ((unused)))
325 /* Add source lines as comments in generated assembler file */
326 {
327     AddSource = 1;
328 }
329
330
331
332 static void OptAnsi (const char* Opt attribute ((unused)),
333                      const char* Arg attribute ((unused)))
334 /* Compile in strict ANSI mode */
335 {
336     ANSI = 1;
337 }
338
339
340
341 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
342 /* Handle the --bss-name option */
343 {
344     /* Check for a valid name */
345     CheckSegName (Arg);
346
347     /* Set the name */
348     SetSegName (SEG_BSS, Arg);
349 }
350
351
352
353 static void OptCheckStack (const char* Opt attribute ((unused)),
354                            const char* Arg attribute ((unused)))
355 /* Handle the --check-stack option */
356 {
357     IS_Set (&CheckStack, 1);
358 }
359
360
361
362 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
363 /* Handle the --code-name option */
364 {
365     /* Check for a valid name */
366     CheckSegName (Arg);
367
368     /* Set the name */
369     SetSegName (SEG_CODE, Arg);
370 }
371
372
373
374 static void OptCodeSize (const char* Opt, const char* Arg)
375 /* Handle the --codesize option */
376 {
377     /* Numeric argument expected */
378     if (sscanf (Arg, "%u", &CodeSizeFactor) != 1 ||
379         CodeSizeFactor < 100 ||
380         CodeSizeFactor > 1000) {
381         AbEnd ("Argument for %s is invalid", Opt);
382     }
383 }
384
385
386
387 static void OptCreateDep (const char* Opt attribute ((unused)),
388                           const char* Arg attribute ((unused)))
389 /* Handle the --create-dep option */
390 {
391     CreateDep = 1;
392 }
393
394
395
396 static void OptCPU (const char* Opt, const char* Arg)
397 /* Handle the --cpu option */
398 {
399     /* Find the CPU from the given name */
400     CPU = FindCPU (Arg);
401     if (CPU != CPU_6502 && CPU != CPU_6502X && CPU != CPU_65SC02 &&
402         CPU != CPU_65C02 && CPU != CPU_65816) {
403         AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
404     }
405 }
406
407
408
409 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
410 /* Handle the --data-name option */
411 {
412     /* Check for a valid name */
413     CheckSegName (Arg);
414
415     /* Set the name */
416     SetSegName (SEG_DATA, Arg);
417 }
418
419
420
421 static void OptDebug (const char* Opt attribute ((unused)),
422                       const char* Arg attribute ((unused)))
423 /* Compiler debug mode */
424 {
425     ++Debug;
426 }
427
428
429
430 static void OptDebugInfo (const char* Opt attribute ((unused)),
431                           const char* Arg attribute ((unused)))
432 /* Add debug info to the object file */
433 {
434     DebugInfo = 1;
435 }
436
437
438
439 static void OptDebugOpt (const char* Opt attribute ((unused)), const char* Arg)
440 /* Debug optimization steps */
441 {
442     char Buf [128];
443     char* Line;
444
445     /* Open the file */
446     FILE* F = fopen (Arg, "r");
447     if (F == 0) {
448         AbEnd ("Cannot open `%s': %s", Arg, strerror (errno));
449     }
450
451     /* Read line by line, ignore empty lines and switch optimization
452      * steps on/off.
453      */
454     while (fgets (Buf, sizeof (Buf), F) != 0) {
455
456         /* Remove trailing control chars. This will also remove the
457          * trailing newline.
458          */
459         unsigned Len = strlen (Buf);
460         while (Len > 0 && IsControl (Buf[Len-1])) {
461             --Len;
462         }
463         Buf[Len] = '\0';
464
465         /* Get a pointer to the buffer and remove leading white space */
466         Line = Buf;
467         while (IsBlank (*Line)) {
468             ++Line;
469         }
470
471         /* Check the first character and enable/disable the step or
472          * ignore the line
473          */
474         switch (*Line) {
475
476             case '\0':
477             case '#':
478             case ';':
479                 /* Empty or comment line */
480                 continue;
481
482             case '-':
483                 DisableOpt (Line+1);
484                 break;
485
486             case '+':
487                 ++Line;
488                 /* FALLTHROUGH */
489
490             default:
491                 EnableOpt (Line);
492                 break;
493
494         }
495
496     }
497
498     /* Close the file, no error check here since we were just reading and
499      * this is only a debug function.
500      */
501     (void) fclose (F);
502 }
503
504
505
506 static void OptDisableOpt (const char* Opt attribute ((unused)), const char* Arg)
507 /* Disable an optimization step */
508 {
509     DisableOpt (Arg);
510 }
511
512
513
514 static void OptEnableOpt (const char* Opt attribute ((unused)), const char* Arg)
515 /* Enable an optimization step */
516 {
517     EnableOpt (Arg);
518 }
519
520
521
522 static void OptForgetIncPaths (const char* Opt attribute ((unused)),
523                                const char* Arg attribute ((unused)))
524 /* Forget all currently defined include paths */
525 {
526     ForgetAllIncludePaths ();
527 }
528
529
530
531 static void OptHelp (const char* Opt attribute ((unused)),
532                      const char* Arg attribute ((unused)))
533 /* Print usage information and exit */
534 {
535     Usage ();
536     exit (EXIT_SUCCESS);
537 }
538
539
540
541 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
542 /* Add an include search path */
543 {
544     AddIncludePath (Arg, INC_SYS | INC_USER);
545 }
546
547
548
549 static void OptListOptSteps (const char* Opt attribute ((unused)),
550                              const char* Arg attribute ((unused)))
551 /* List all optimizer steps */
552 {
553     /* List the optimizer steps */
554     ListOptSteps (stdout);
555
556     /* Terminate */
557     exit (EXIT_SUCCESS);
558 }
559
560
561
562 static void OptMemoryModel (const char* Opt, const char* Arg)
563 /* Set the memory model */
564 {
565     mmodel_t M;
566
567     /* Check the current memory model */
568     if (MemoryModel != MMODEL_UNKNOWN) {
569         AbEnd ("Cannot use option `%s' twice", Opt);
570     }
571
572     /* Translate the memory model name and check it */
573     M = FindMemoryModel (Arg);
574     if (M == MMODEL_UNKNOWN) {
575         AbEnd ("Unknown memory model: %s", Arg);
576     } else if (M == MMODEL_HUGE) {
577         AbEnd ("Unsupported memory model: %s", Arg);
578     }
579
580     /* Set the memory model */
581     SetMemoryModel (M);
582 }
583
584
585
586 static void OptRegisterSpace (const char* Opt, const char* Arg)
587 /* Handle the --register-space option */
588 {
589     /* Numeric argument expected */
590     if (sscanf (Arg, "%u", &RegisterSpace) != 1 || RegisterSpace > 256) {
591         AbEnd ("Argument for option %s is invalid", Opt);
592     }
593 }
594
595
596
597 static void OptRegisterVars (const char* Opt attribute ((unused)),
598                              const char* Arg attribute ((unused)))
599 /* Handle the --register-vars option */
600 {
601     IS_Set (&EnableRegVars, 1);
602 }
603
604
605
606 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
607 /* Handle the --rodata-name option */
608 {
609     /* Check for a valid name */
610     CheckSegName (Arg);
611
612     /* Set the name */
613     SetSegName (SEG_RODATA, Arg);
614 }
615
616
617
618 static void OptSignedChars (const char* Opt attribute ((unused)),
619                             const char* Arg attribute ((unused)))
620 /* Make default characters signed */
621 {
622     IS_Set (&SignedChars, 1);
623 }
624
625
626
627 static void OptStaticLocals (const char* Opt attribute ((unused)),
628                              const char* Arg attribute ((unused)))
629 /* Place local variables in static storage */
630 {
631     IS_Set (&StaticLocals, 1);
632 }
633
634
635
636 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
637 /* Set the target system */
638 {
639     SetSys (Arg);
640 }
641
642
643
644 static void OptVerbose (const char* Opt attribute ((unused)),
645                         const char* Arg attribute ((unused)))
646 /* Increase verbosity */
647 {
648     ++Verbosity;
649 }
650
651
652
653 static void OptVersion (const char* Opt attribute ((unused)),
654                         const char* Arg attribute ((unused)))
655 /* Print the assembler version */
656 {
657     fprintf (stderr,
658              "cc65 V%u.%u.%u\n",
659              VER_MAJOR, VER_MINOR, VER_PATCH);
660 }
661
662
663
664 static void OptWritableStrings (const char* Opt attribute ((unused)),
665                                 const char* Arg attribute ((unused)))
666 /* Make string literals writable */
667 {
668     IS_Set (&WritableStrings, 1);
669 }
670
671
672
673 int main (int argc, char* argv[])
674 {
675     /* Program long options */
676     static const LongOpt OptTab[] = {
677         { "--add-source",       0,      OptAddSource            },
678         { "--ansi",             0,      OptAnsi                 },
679         { "--bss-name",         1,      OptBssName              },
680         { "--check-stack",      0,      OptCheckStack           },
681         { "--code-name",        1,      OptCodeName             },
682         { "--codesize",         1,      OptCodeSize             },
683         { "--cpu",              1,      OptCPU                  },
684         { "--create-dep",       0,      OptCreateDep            },
685         { "--data-name",        1,      OptDataName             },
686         { "--debug",            0,      OptDebug                },
687         { "--debug-info",       0,      OptDebugInfo            },
688         { "--debug-opt",        1,      OptDebugOpt             },
689         { "--disable-opt",      1,      OptDisableOpt           },
690         { "--enable-opt",       1,      OptEnableOpt            },
691         { "--forget-inc-paths", 0,      OptForgetIncPaths       },
692         { "--help",             0,      OptHelp                 },
693         { "--include-dir",      1,      OptIncludeDir           },
694         { "--list-opt-steps",   0,      OptListOptSteps         },
695         { "--memory-model",     1,      OptMemoryModel          },
696         { "--register-space",   1,      OptRegisterSpace        },
697         { "--register-vars",    0,      OptRegisterVars         },
698         { "--rodata-name",      1,      OptRodataName           },
699         { "--signed-chars",     0,      OptSignedChars          },
700         { "--static-locals",    0,      OptStaticLocals         },
701         { "--target",           1,      OptTarget               },
702         { "--verbose",          0,      OptVerbose              },
703         { "--version",          0,      OptVersion              },
704         { "--writable-strings", 0,      OptWritableStrings      },
705     };
706
707     unsigned I;
708
709     /* Initialize the output file name */
710     const char* OutputFile = 0;
711     const char* InputFile  = 0;
712
713     /* Initialize the cmdline module */
714     InitCmdLine (&argc, &argv, "cc65");
715
716     /* Initialize the default segment names */
717     InitSegNames ();
718
719     /* Initialize the include search paths */
720     InitIncludePaths ();
721
722     /* Parse the command line */
723     I = 1;
724     while (I < ArgCount) {
725
726         const char* P;
727
728         /* Get the argument */
729         const char* Arg = ArgVec[I];
730
731         /* Check for an option */
732         if (Arg [0] == '-') {
733
734             switch (Arg [1]) {
735
736                 case '-':
737                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
738                     break;
739
740                 case 'd':
741                     OptDebug (Arg, 0);
742                     break;
743
744                 case 'h':
745                 case '?':
746                     OptHelp (Arg, 0);
747                     break;
748
749                 case 'g':
750                     OptDebugInfo (Arg, 0);
751                     break;
752
753                 case 'j':
754                     OptSignedChars (Arg, 0);
755                     break;
756
757                 case 'o':
758                     OutputFile = GetArg (&I, 2);
759                     break;
760
761                 case 'r':
762                     OptRegisterVars (Arg, 0);
763                     break;
764
765                 case 't':
766                     OptTarget (Arg, GetArg (&I, 2));
767                     break;
768
769                 case 'u':
770                     OptCreateDep (Arg, 0);
771                     break;
772
773                 case 'v':
774                     OptVerbose (Arg, 0);
775                     break;
776
777                 case 'A':
778                     OptAnsi (Arg, 0);
779                     break;
780
781                 case 'C':
782                     P = Arg + 2;
783                     while (*P) {
784                         switch (*P++) {
785                             case 'l':
786                                 OptStaticLocals (Arg, 0);
787                                 break;
788                             default:
789                                 UnknownOption (Arg);
790                                 break;
791                         }
792                     }
793                     break;
794
795                 case 'D':
796                     DefineSym (GetArg (&I, 2));
797                     break;
798
799                 case 'I':
800                     OptIncludeDir (Arg, GetArg (&I, 2));
801                     break;
802
803                 case 'O':
804                     Optimize = 1;
805                     P = Arg + 2;
806                     while (*P) {
807                         switch (*P++) {
808                             case 'f':
809                                 sscanf (P, "%lx", (long*) &OptDisable);
810                                 break;
811                             case 'i':
812                                 FavourSize = 0;
813                                 CodeSizeFactor = 200;
814                                 break;
815                             case 'r':
816                                 IS_Set (&EnableRegVars, 1);
817                                 break;
818                             case 's':
819                                 IS_Set (&InlineStdFuncs, 1);
820                                 break;
821                         }
822                     }
823                     break;
824
825                 case 'T':
826                     OptAddSource (Arg, 0);
827                     break;
828
829                 case 'V':
830                     OptVersion (Arg, 0);
831                     break;
832
833                 case 'W':
834                     NoWarn = 1;
835                     break;
836
837                 default:
838                     UnknownOption (Arg);
839                     break;
840             }
841         } else {
842             if (InputFile) {
843                 fprintf (stderr, "additional file specs ignored\n");
844             } else {
845                 InputFile = Arg;
846             }
847         }
848
849         /* Next argument */
850         ++I;
851     }
852
853     /* Did we have a file spec on the command line? */
854     if (InputFile == 0) {
855         AbEnd ("No input files");
856     }
857
858     /* Create the output file name if it was not explicitly given */
859     if (OutputFile == 0) {
860         OutputFile = MakeFilename (InputFile, ".s");
861     }
862
863     /* If no CPU given, use the default CPU for the target */
864     if (CPU == CPU_UNKNOWN) {
865         if (Target != TGT_UNKNOWN) {
866             CPU = DefaultCPU[Target];
867         } else {
868             CPU = CPU_6502;
869         }
870     }
871
872     /* If no memory model was given, use the default */
873     if (MemoryModel == MMODEL_UNKNOWN) {
874         SetMemoryModel (MMODEL_NEAR);
875     }
876
877     /* Go! */
878     Compile (InputFile);
879
880     /* Create the output file if we didn't had any errors */
881     if (ErrorCount == 0 || Debug) {
882
883         /* Open the file */
884         FILE* F = fopen (OutputFile, "w");
885         if (F == 0) {
886             Fatal ("Cannot open output file `%s': %s", OutputFile, strerror (errno));
887         }
888         Print (stdout, 1, "Opened output file `%s'\n", OutputFile);
889
890         /* Write the output to the file */
891         WriteOutput (F);
892         Print (stdout, 1, "Wrote output to `%s'\n", OutputFile);
893
894         /* Close the file, check for errors */
895         if (fclose (F) != 0) {
896             remove (OutputFile);
897             Fatal ("Cannot write to output file (disk full?)");
898         }
899         Print (stdout, 1, "Closed output file `%s'\n", OutputFile);
900
901         /* Create dependencies if requested */
902         if (CreateDep) {
903             DoCreateDep (OutputFile);
904             Print (stdout, 1, "Creating dependeny file");
905         }
906
907     }
908
909     /* Return an apropriate exit code */
910     return (ErrorCount > 0)? EXIT_FAILURE : EXIT_SUCCESS;
911 }
912
913
914