]> git.sur5r.net Git - cc65/blob - src/ca65/main.c
Merge telemon24 and telemon30 into telestrat target.
[cc65] / src / ca65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                 Main program for the ca65 macroassembler                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2013, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 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 <stdlib.h>
38 #include <string.h>
39 #include <time.h>
40
41 /* common */
42 #include "addrsize.h"
43 #include "chartype.h"
44 #include "cmdline.h"
45 #include "debugflag.h"
46 #include "mmodel.h"
47 #include "print.h"
48 #include "scopedefs.h"
49 #include "strbuf.h"
50 #include "target.h"
51 #include "tgttrans.h"
52 #include "version.h"
53
54 /* ca65 */
55 #include "abend.h"
56 #include "asserts.h"
57 #include "dbginfo.h"
58 #include "error.h"
59 #include "expr.h"
60 #include "feature.h"
61 #include "filetab.h"
62 #include "global.h"
63 #include "incpath.h"
64 #include "instr.h"
65 #include "istack.h"
66 #include "lineinfo.h"
67 #include "listing.h"
68 #include "macro.h"
69 #include "nexttok.h"
70 #include "objfile.h"
71 #include "options.h"
72 #include "pseudo.h"
73 #include "scanner.h"
74 #include "segment.h"
75 #include "sizeof.h"
76 #include "span.h"
77 #include "spool.h"
78 #include "symbol.h"
79 #include "symtab.h"
80 #include "ulabel.h"
81
82
83
84 /*****************************************************************************/
85 /*                                   Code                                    */
86 /*****************************************************************************/
87
88
89
90 static void Usage (void)
91 /* Print usage information and exit */
92 {
93     printf ("Usage: %s [options] file\n"
94             "Short options:\n"
95             "  -D name[=value]\t\tDefine a symbol\n"
96             "  -I dir\t\t\tSet an include directory search path\n"
97             "  -U\t\t\t\tMark unresolved symbols as import\n"
98             "  -V\t\t\t\tPrint the assembler version\n"
99             "  -W n\t\t\t\tSet warning level n\n"
100             "  -d\t\t\t\tDebug mode\n"
101             "  -g\t\t\t\tAdd debug info to object file\n"
102             "  -h\t\t\t\tHelp (this text)\n"
103             "  -i\t\t\t\tIgnore case of symbols\n"
104             "  -l name\t\t\tCreate a listing file if assembly was ok\n"
105             "  -mm model\t\t\tSet the memory model\n"
106             "  -o name\t\t\tName the output file\n"
107             "  -s\t\t\t\tEnable smart mode\n"
108             "  -t sys\t\t\tSet the target system\n"
109             "  -v\t\t\t\tIncrease verbosity\n"
110             "\n"
111             "Long options:\n"
112             "  --auto-import\t\t\tMark unresolved symbols as import\n"
113             "  --bin-include-dir dir\t\tSet a search path for binary includes\n"
114             "  --cpu type\t\t\tSet cpu type\n"
115             "  --create-dep name\t\tCreate a make dependency file\n"
116             "  --create-full-dep name\tCreate a full make dependency file\n"
117             "  --debug\t\t\tDebug mode\n"
118             "  --debug-info\t\t\tAdd debug info to object file\n"
119             "  --feature name\t\tSet an emulation feature\n"
120             "  --help\t\t\tHelp (this text)\n"
121             "  --ignore-case\t\t\tIgnore case of symbols\n"
122             "  --include-dir dir\t\tSet an include directory search path\n"
123             "  --large-alignment\t\tDon't warn about large alignments\n"
124             "  --listing name\t\tCreate a listing file if assembly was ok\n"
125             "  --list-bytes n\t\tMaximum number of bytes per listing line\n"
126             "  --macpack-dir dir\t\tSet a macro package directory\n"
127             "  --memory-model model\t\tSet the memory model\n"
128             "  --pagelength n\t\tSet the page length for the listing\n"
129             "  --relax-checks\t\tRelax some checks (see docs)\n"
130             "  --smart\t\t\tEnable smart mode\n"
131             "  --target sys\t\t\tSet the target system\n"
132             "  --verbose\t\t\tIncrease verbosity\n"
133             "  --version\t\t\tPrint the assembler version\n",
134             ProgName);
135 }
136
137
138
139 static void SetOptions (void)
140 /* Set the option for the translator */
141 {
142     StrBuf Buf = STATIC_STRBUF_INITIALIZER;
143
144     /* Set the translator */
145     SB_Printf (&Buf, "ca65 V%s", GetVersionAsString ());
146     OptTranslator (&Buf);
147
148     /* Set date and time */
149     OptDateTime ((unsigned long) time(0));
150
151     /* Release memory for the string */
152     SB_Done (&Buf);
153 }
154
155
156
157 static void NewSymbol (const char* SymName, long Val)
158 /* Define a symbol with a fixed numeric value in the current scope */
159 {
160     ExprNode* Expr;
161     SymEntry* Sym;
162
163     /* Convert the name to a string buffer */
164     StrBuf SymBuf = STATIC_STRBUF_INITIALIZER;
165     SB_CopyStr (&SymBuf, SymName);
166
167     /* Search for the symbol, allocate a new one if it doesn't exist */
168     Sym = SymFind (CurrentScope, &SymBuf, SYM_ALLOC_NEW);
169
170     /* Check if have already a symbol with this name */
171     if (SymIsDef (Sym)) {
172         AbEnd ("`%s' is already defined", SymName);
173     }
174
175     /* Generate an expression for the symbol */
176     Expr = GenLiteralExpr (Val);
177
178     /* Mark the symbol as defined */
179     SymDef (Sym, Expr, ADDR_SIZE_DEFAULT, SF_NONE);
180
181     /* Free string buffer memory */
182     SB_Done (&SymBuf);
183 }
184
185
186
187 static void CBMSystem (const char* Sys)
188 /* Define a CBM system */
189 {
190     NewSymbol ("__CBM__", 1);
191     NewSymbol (Sys, 1);
192 }
193
194
195
196 static void SetSys (const char* Sys)
197 /* Define a target system */
198 {
199     switch (Target = FindTarget (Sys)) {
200
201         case TGT_NONE:
202             break;
203
204         case TGT_MODULE:
205             AbEnd ("Cannot use `module' as a target for the assembler");
206             break;
207
208         case TGT_ATARI5200:
209             NewSymbol ("__ATARI5200__", 1);
210             break;
211
212         case TGT_ATARI:
213             NewSymbol ("__ATARI__", 1);
214             break;
215
216         case TGT_ATARIXL:
217             NewSymbol ("__ATARI__", 1);
218             NewSymbol ("__ATARIXL__", 1);
219             break;
220
221         case TGT_C16:
222             CBMSystem ("__C16__");
223             break;
224
225         case TGT_C64:
226             CBMSystem ("__C64__");
227             break;
228
229         case TGT_C65:
230             CBMSystem ("__C65__");
231             break;
232
233         case TGT_VIC20:
234             CBMSystem ("__VIC20__");
235             break;
236
237         case TGT_C128:
238             CBMSystem ("__C128__");
239             break;
240
241         case TGT_PLUS4:
242             CBMSystem ("__C16__");
243             NewSymbol ("__PLUS4__", 1);
244             break;
245
246         case TGT_CBM510:
247             CBMSystem ("__CBM510__");
248             break;
249
250         case TGT_CBM610:
251             CBMSystem ("__CBM610__");
252             break;
253
254         case TGT_PET:
255             CBMSystem ("__PET__");
256             break;
257
258         case TGT_BBC:
259             NewSymbol ("__BBC__", 1);
260             break;
261
262         case TGT_APPLE2:
263             NewSymbol ("__APPLE2__", 1);
264             break;
265
266         case TGT_APPLE2ENH:
267             NewSymbol ("__APPLE2__", 1);
268             NewSymbol ("__APPLE2ENH__", 1);
269             break;
270
271         case TGT_GAMATE:
272             NewSymbol ("__GAMATE__", 1);
273             break;
274
275         case TGT_GEOS_CBM:
276             /* Do not handle as a CBM system */
277             NewSymbol ("__GEOS__", 1);
278             NewSymbol ("__GEOS_CBM__", 1);
279             break;
280
281         case TGT_GEOS_APPLE:
282             NewSymbol ("__GEOS__", 1);
283             NewSymbol ("__GEOS_APPLE__", 1);
284             break;
285
286         case TGT_LUNIX:
287             NewSymbol ("__LUNIX__", 1);
288             break;
289
290         case TGT_ATMOS:
291             NewSymbol ("__ATMOS__", 1);
292             break; 
293
294         case TGT_TELESTRAT:
295              NewSymbol ("__TELESTRAT__", 1);
296              break;
297
298         case TGT_NES:
299             NewSymbol ("__NES__", 1);
300             break;
301
302         case TGT_SUPERVISION:
303             NewSymbol ("__SUPERVISION__", 1);
304             break;
305
306         case TGT_LYNX:
307             NewSymbol ("__LYNX__", 1);
308             break;
309
310         case TGT_SIM6502:
311             NewSymbol ("__SIM6502__", 1);
312             break;
313
314         case TGT_SIM65C02:
315             NewSymbol ("__SIM65C02__", 1);
316             break;
317
318         case TGT_OSIC1P:
319             NewSymbol ("__OSIC1P__", 1);
320             break;
321
322         case TGT_PCENGINE:
323             NewSymbol ("__PCE__", 1);
324             break;
325
326         default:
327             AbEnd ("Invalid target name: `%s'", Sys);
328
329     }
330
331     /* Initialize the translation tables for the target system */
332     TgtTranslateInit ();
333 }
334
335
336
337 static void FileNameOption (const char* Opt, const char* Arg, StrBuf* Name)
338 /* Handle an option that remembers a file name for later */
339 {
340     /* Cannot have the option twice */
341     if (SB_NotEmpty (Name)) {
342         AbEnd ("Cannot use option `%s' twice", Opt);
343     }
344     /* Remember the file name for later */
345     SB_CopyStr (Name, Arg);
346     SB_Terminate (Name);
347 }
348
349
350
351 static void DefineSymbol (const char* Def)
352 /* Define a symbol from the command line */
353 {
354     const char* P;
355     long Val;
356     StrBuf SymName = AUTO_STRBUF_INITIALIZER;
357
358
359     /* The symbol must start with a character or underline */
360     if (!IsIdStart (Def [0])) {
361         InvDef (Def);
362     }
363     P = Def;
364
365     /* Copy the symbol, checking the rest */
366     while (IsIdChar (*P)) {
367         SB_AppendChar (&SymName, *P++);
368     }
369     SB_Terminate (&SymName);
370
371     /* Do we have a value given? */
372     if (*P != '=') {
373         if (*P != '\0') {
374             InvDef (Def);
375         }
376         Val = 0;
377     } else {
378         /* We have a value */
379         ++P;
380         if (*P == '$') {
381             ++P;
382             if (sscanf (P, "%lx", &Val) != 1) {
383                 InvDef (Def);
384             }
385         } else {
386             if (sscanf (P, "%li", &Val) != 1) {
387                 InvDef (Def);
388             }
389         }
390     }
391
392     /* Define the new symbol */
393     NewSymbol (SB_GetConstBuf (&SymName), Val);
394
395     /* Release string memory */
396     SB_Done (&SymName);
397 }
398
399
400
401 static void OptAutoImport (const char* Opt attribute ((unused)),
402                            const char* Arg attribute ((unused)))
403 /* Mark unresolved symbols as imported */
404 {
405     AutoImport = 1;
406 }
407
408
409
410 static void OptBinIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
411 /* Add an include search path for binaries */
412 {
413     AddSearchPath (BinSearchPath, Arg);
414 }
415
416
417
418 static void OptCPU (const char* Opt attribute ((unused)), const char* Arg)
419 /* Handle the --cpu option */
420 {
421     cpu_t CPU = FindCPU (Arg);
422     if (CPU == CPU_UNKNOWN) {
423         AbEnd ("Invalid CPU: `%s'", Arg);
424     } else {
425         SetCPU (CPU);
426     }
427 }
428
429
430
431 static void OptCreateDep (const char* Opt, const char* Arg)
432 /* Handle the --create-dep option */
433 {
434     FileNameOption (Opt, Arg, &DepName);
435 }
436
437
438
439 static void OptCreateFullDep (const char* Opt attribute ((unused)),
440                               const char* Arg)
441 /* Handle the --create-full-dep option */
442 {
443     FileNameOption (Opt, Arg, &FullDepName);
444 }
445
446
447
448 static void OptDebug (const char* Opt attribute ((unused)),
449                       const char* Arg attribute ((unused)))
450 /* Compiler debug mode */
451 {
452     ++Debug;
453 }
454
455
456
457 static void OptDebugInfo (const char* Opt attribute ((unused)),
458                           const char* Arg attribute ((unused)))
459 /* Add debug info to the object file */
460 {
461     DbgSyms = 1;
462 }
463
464
465
466 static void OptFeature (const char* Opt attribute ((unused)), const char* Arg)
467 /* Set an emulation feature */
468 {
469     /* Make a string buffer from Arg */
470     StrBuf Feature;
471
472     /* Set the feature, check for errors */
473     if (SetFeature (SB_InitFromString (&Feature, Arg)) == FEAT_UNKNOWN) {
474         AbEnd ("Illegal emulation feature: `%s'", Arg);
475     }
476 }
477
478
479
480 static void OptHelp (const char* Opt attribute ((unused)),
481                      const char* Arg attribute ((unused)))
482 /* Print usage information and exit */
483 {
484     Usage ();
485     exit (EXIT_SUCCESS);
486 }
487
488
489
490 static void OptIgnoreCase (const char* Opt attribute ((unused)),
491                            const char* Arg attribute ((unused)))
492 /* Ignore case on symbols */
493 {
494     IgnoreCase = 1;
495 }
496
497
498
499 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
500 /* Add an include search path */
501 {
502     AddSearchPath (IncSearchPath, Arg);
503 }
504
505
506
507 static void OptLargeAlignment (const char* Opt attribute ((unused)),
508                                const char* Arg attribute ((unused)))
509 /* Don't warn about large alignments */
510 {
511     LargeAlignment = 1;
512 }
513
514
515
516 static void OptListBytes (const char* Opt, const char* Arg)
517 /* Set the maximum number of bytes per listing line */
518 {
519     unsigned Num;
520     char     Check;
521
522     /* Convert the argument to a number */
523     if (sscanf (Arg, "%u%c", &Num, &Check) != 1) {
524         InvArg (Opt, Arg);
525     }
526
527     /* Check the bounds */
528     if (Num != 0 && (Num < MIN_LIST_BYTES || Num > MAX_LIST_BYTES)) {
529         AbEnd ("Argument for option `%s' is out of range", Opt);
530     }
531
532     /* Use the value */
533     SetListBytes (Num);
534 }
535
536
537
538 static void OptListing (const char* Opt, const char* Arg)
539 /* Create a listing file */
540 {
541     /* Since the meaning of -l and --listing has changed, print an error if
542     ** the filename is empty or begins with the option char.
543     */
544     if (Arg == 0 || *Arg == '\0' || *Arg == '-') {
545         Fatal ("The meaning of `%s' has changed. It does now "
546                "expect a file name as argument.", Opt);
547     }
548
549     /* Get the file name */
550     FileNameOption (Opt, Arg, &ListingName);
551 }
552
553
554
555 static void OptMemoryModel (const char* Opt, const char* Arg)
556 /* Set the memory model */
557 {
558     mmodel_t M;
559
560     /* Check the current memory model */
561     if (MemoryModel != MMODEL_UNKNOWN) {
562         AbEnd ("Cannot use option `%s' twice", Opt);
563     }
564
565     /* Translate the memory model name and check it */
566     M = FindMemoryModel (Arg);
567     if (M == MMODEL_UNKNOWN) {
568         AbEnd ("Unknown memory model: %s", Arg);
569     } else if (M == MMODEL_HUGE) {
570         AbEnd ("Unsupported memory model: %s", Arg);
571     }
572
573     /* Set the memory model */
574     SetMemoryModel (M);
575 }
576
577
578
579 static void OptPageLength (const char* Opt attribute ((unused)), const char* Arg)
580 /* Handle the --pagelength option */
581 {
582     int Len = atoi (Arg);
583     if (Len != -1 && (Len < MIN_PAGE_LEN || Len > MAX_PAGE_LEN)) {
584         AbEnd ("Invalid page length: %d", Len);
585     }
586     PageLength = Len;
587 }
588
589
590
591 static void OptRelaxChecks (const char* Opt attribute ((unused)),
592                             const char* Arg attribute ((unused)))
593 /* Handle the --relax-checks options */
594 {
595     RelaxChecks = 1;
596 }
597
598
599
600 static void OptSmart (const char* Opt attribute ((unused)),
601                       const char* Arg attribute ((unused)))
602 /* Handle the -s/--smart options */
603 {
604     SmartMode = 1;
605 }
606
607
608
609 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
610 /* Set the target system */
611 {
612     SetSys (Arg);
613 }
614
615
616
617 static void OptVerbose (const char* Opt attribute ((unused)),
618                         const char* Arg attribute ((unused)))
619 /* Increase verbosity */
620 {
621     ++Verbosity;
622 }
623
624
625
626 static void OptVersion (const char* Opt attribute ((unused)),
627                         const char* Arg attribute ((unused)))
628 /* Print the assembler version */
629 {
630     fprintf (stderr, "%s V%s\n", ProgName, GetVersionAsString ());
631     exit(EXIT_SUCCESS);
632 }
633
634
635
636 static void DoPCAssign (void)
637 /* Start absolute code */
638 {
639     long PC = ConstExpression ();
640     if (PC < 0 || PC > 0xFFFFFF) {
641         Error ("Range error");
642     } else {
643         EnterAbsoluteMode (PC);
644     }
645 }
646
647
648
649 static void OneLine (void)
650 /* Assemble one line */
651 {
652     Segment*      Seg   = 0;
653     unsigned long PC    = 0;
654     SymEntry*     Sym   = 0;
655     Macro*        Mac   = 0;
656     int           Instr = -1;
657
658     /* Initialize the new listing line if we are actually reading from file
659     ** and not from internally pushed input.
660     */
661     if (!HavePushedInput ()) {
662         InitListingLine ();
663     }
664
665     /* Single colon means unnamed label */
666     if (CurTok.Tok == TOK_COLON) {
667         ULabDef ();
668         NextTok ();
669     }
670
671     /* If the first token on the line is an identifier, check for a macro or
672     ** an instruction.
673     */
674     if (CurTok.Tok == TOK_IDENT) {
675         if (UbiquitousIdents) {
676             /* Macros CAN be instructions, so check for them first */
677             Mac = FindMacro (&CurTok.SVal);
678             if (Mac == 0) {
679                 Instr = FindInstruction (&CurTok.SVal);
680             }
681         } else {
682             /* Macros and symbols may NOT use the names of instructions */
683             Instr = FindInstruction (&CurTok.SVal);
684             if (Instr < 0) {
685                 Mac = FindMacro (&CurTok.SVal);
686             }
687         }
688     }
689
690     /* Handle an identifier. This may be a cheap local symbol, or a fully
691     ** scoped identifier which may start with a namespace token (for global
692     ** namespace)
693     */
694     if (CurTok.Tok == TOK_LOCAL_IDENT ||
695         CurTok.Tok == TOK_NAMESPACE   ||
696         (CurTok.Tok == TOK_IDENT && Instr < 0 && Mac == 0)) {
697
698         /* Did we have whitespace before the ident? */
699         int HadWS = CurTok.WS;
700
701         /* Generate the symbol table entry, then skip the name */
702         Sym = ParseAnySymName (SYM_ALLOC_NEW);
703
704         /* If a colon follows, this is a label definition. If there
705         ** is no colon, it's an assignment.
706         */
707         if (CurTok.Tok == TOK_EQ || CurTok.Tok == TOK_ASSIGN) {
708
709             /* Determine the symbol flags from the assignment token */
710             unsigned Flags = (CurTok.Tok == TOK_ASSIGN)? SF_LABEL : SF_NONE;
711
712             /* Skip the '=' */
713             NextTok ();
714
715             /* Define the symbol with the expression following the '=' */
716             SymDef (Sym, Expression(), ADDR_SIZE_DEFAULT, Flags);
717
718             /* Don't allow anything after a symbol definition */
719             ConsumeSep ();
720             return;
721
722         } else if (CurTok.Tok == TOK_SET) {
723
724             ExprNode* Expr;
725
726             /* .SET defines variables (= redefinable symbols) */
727             NextTok ();
728
729             /* Read the assignment expression, which must be constant */
730             Expr = GenLiteralExpr (ConstExpression ());
731
732             /* Define the symbol with the constant expression following
733             ** the '='
734             */
735             SymDef (Sym, Expr, ADDR_SIZE_DEFAULT, SF_VAR);
736
737             /* Don't allow anything after a symbol definition */
738             ConsumeSep ();
739             return;
740
741         } else {
742
743             /* A label. Remember the current segment, so we can later
744             ** determine the size of the data stored under the label.
745             */
746             Seg = ActiveSeg;
747             PC  = GetPC ();
748
749             /* Define the label */
750             SymDef (Sym, GenCurrentPC (), ADDR_SIZE_DEFAULT, SF_LABEL);
751
752             /* Skip the colon. If NoColonLabels is enabled, allow labels
753             ** without a colon if there is no whitespace before the
754             ** identifier.
755             */
756             if (CurTok.Tok != TOK_COLON) {
757                 if (HadWS || !NoColonLabels) {
758                     Error ("`:' expected");
759                     /* Try some smart error recovery */
760                     if (CurTok.Tok == TOK_NAMESPACE) {
761                         NextTok ();
762                     }
763                 }
764             } else {
765                 /* Skip the colon */
766                 NextTok ();
767             }
768
769             /* If we come here, a new identifier may be waiting, which may
770             ** be a macro or instruction.
771             */
772             if (CurTok.Tok == TOK_IDENT) {
773                 if (UbiquitousIdents) {
774                     /* Macros CAN be instructions, so check for them first */
775                     Mac = FindMacro (&CurTok.SVal);
776                     if (Mac == 0) {
777                         Instr = FindInstruction (&CurTok.SVal);
778                     }
779                 } else {
780                     /* Macros and symbols may NOT use the names of instructions */
781                     Instr = FindInstruction (&CurTok.SVal);
782                     if (Instr < 0) {
783                         Mac = FindMacro (&CurTok.SVal);
784                     }
785                 }
786             }
787         }
788     }
789
790     /* We've handled a possible label, now handle the remainder of the line */
791     if (CurTok.Tok >= TOK_FIRSTPSEUDO && CurTok.Tok <= TOK_LASTPSEUDO) {
792         /* A control command */
793         HandlePseudo ();
794     } else if (Mac != 0) {
795         /* A macro expansion */
796         MacExpandStart (Mac);
797     } else if (Instr >= 0) {
798         /* A mnemonic - assemble one instruction */
799         HandleInstruction (Instr);
800     } else if (PCAssignment && (CurTok.Tok == TOK_STAR || CurTok.Tok == TOK_PC)) {
801         NextTok ();
802         if (CurTok.Tok != TOK_EQ) {
803             Error ("`=' expected");
804             SkipUntilSep ();
805         } else {
806             /* Skip the equal sign */
807             NextTok ();
808             /* Enter absolute mode */
809             DoPCAssign ();
810         }
811     }
812
813     /* If we have defined a label, remember its size. Sym is also set by
814     ** a symbol assignment, but in this case Done is false, so we don't
815     ** come here.
816     */
817     if (Sym) {
818         unsigned long Size;
819         if (Seg == ActiveSeg) {
820             /* Same segment */
821             Size = GetPC () - PC;
822         } else {
823             /* The line has switched the segment */
824             Size = 0;
825         }
826         DefSizeOfSymbol (Sym, Size);
827     }
828
829     /* Line separator must come here */
830     ConsumeSep ();
831 }
832
833
834
835 static void Assemble (void)
836 /* Start the ball rolling ... */
837 {
838     /* Prime the pump */
839     NextTok ();
840
841     /* Assemble lines until end of file */
842     while (CurTok.Tok != TOK_EOF) {
843         OneLine ();
844     }
845 }
846
847
848
849 static void CreateObjFile (void)
850 /* Create the object file */
851 {
852     /* Open the object, write the header */
853     ObjOpen ();
854
855     /* Write the object file options */
856     WriteOptions ();
857
858     /* Write the list of input files */
859     WriteFiles ();
860
861     /* Write the segment data to the file */
862     WriteSegments ();
863
864     /* Write the import list */
865     WriteImports ();
866
867     /* Write the export list */
868     WriteExports ();
869
870     /* Write debug symbols if requested */
871     WriteDbgSyms ();
872
873     /* Write the scopes if requested */
874     WriteScopes ();
875
876     /* Write line infos if requested */
877     WriteLineInfos ();
878
879     /* Write the string pool */
880     WriteStrPool ();
881
882     /* Write the assertions */
883     WriteAssertions ();
884
885     /* Write the spans */
886     WriteSpans ();
887
888     /* Write an updated header and close the file */
889     ObjClose ();
890 }
891
892
893
894 int main (int argc, char* argv [])
895 /* Assembler main program */
896 {
897     /* Program long options */
898     static const LongOpt OptTab[] = {
899         { "--auto-import",      0,      OptAutoImport           },
900         { "--bin-include-dir",  1,      OptBinIncludeDir        },
901         { "--cpu",              1,      OptCPU                  },
902         { "--create-dep",       1,      OptCreateDep            },
903         { "--create-full-dep",  1,      OptCreateFullDep        },
904         { "--debug",            0,      OptDebug                },
905         { "--debug-info",       0,      OptDebugInfo            },
906         { "--feature",          1,      OptFeature              },
907         { "--help",             0,      OptHelp                 },
908         { "--ignore-case",      0,      OptIgnoreCase           },
909         { "--include-dir",      1,      OptIncludeDir           },
910         { "--large-alignment",  0,      OptLargeAlignment       },
911         { "--list-bytes",       1,      OptListBytes            },
912         { "--listing",          1,      OptListing              },
913         { "--memory-model",     1,      OptMemoryModel          },
914         { "--pagelength",       1,      OptPageLength           },
915         { "--relax-checks",     0,      OptRelaxChecks          },
916         { "--smart",            0,      OptSmart                },
917         { "--target",           1,      OptTarget               },
918         { "--verbose",          0,      OptVerbose              },
919         { "--version",          0,      OptVersion              },
920     };
921
922     /* Name of the global name space */
923     static const StrBuf GlobalNameSpace = STATIC_STRBUF_INITIALIZER;
924
925     unsigned I;
926
927     /* Initialize the cmdline module */
928     InitCmdLine (&argc, &argv, "ca65");
929
930     /* Initialize the string pool */
931     InitStrPool ();
932
933     /* Initialize the include search paths */
934     InitIncludePaths ();
935
936     /* Create the predefined segments */
937     SegInit ();
938
939     /* Enter the base lexical level. We must do that here, since we may
940     ** define symbols using -D.
941     */
942     SymEnterLevel (&GlobalNameSpace, SCOPE_FILE, ADDR_SIZE_DEFAULT, 0);
943
944     /* Initialize the line infos. Must be done here, since we need line infos
945     ** for symbol definitions.
946     */
947     InitLineInfo ();
948
949     /* Check the parameters */
950     I = 1;
951     while (I < ArgCount) {
952
953         /* Get the argument */
954         const char* Arg = ArgVec [I];
955
956         /* Check for an option */
957         if (Arg[0] == '-') {
958             switch (Arg[1]) {
959
960                 case '-':
961                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
962                     break;
963
964                 case 'd':
965                     OptDebug (Arg, 0);
966                     break;
967
968                 case 'g':
969                     OptDebugInfo (Arg, 0);
970                     break;
971
972                 case 'h':
973                     OptHelp (Arg, 0);
974                     break;
975
976                 case 'i':
977                     OptIgnoreCase (Arg, 0);
978                     break;
979
980                 case 'l':
981                     OptListing (Arg, GetArg (&I, 2));
982                     break;
983
984                 case 'm':
985                     if (Arg[2] == 'm') {
986                         OptMemoryModel (Arg, GetArg (&I, 3));
987                     } else {
988                         UnknownOption (Arg);
989                     }
990                     break;
991
992                 case 'o':
993                     OutFile = GetArg (&I, 2);
994                     break;
995
996                 case 's':
997                     OptSmart (Arg, 0);
998                     break;
999
1000                 case 't':
1001                     OptTarget (Arg, GetArg (&I, 2));
1002                     break;
1003
1004                 case 'v':
1005                     OptVerbose (Arg, 0);
1006                     break;
1007
1008                 case 'D':
1009                     DefineSymbol (GetArg (&I, 2));
1010                     break;
1011
1012                 case 'I':
1013                     OptIncludeDir (Arg, GetArg (&I, 2));
1014                     break;
1015
1016                 case 'U':
1017                     OptAutoImport (Arg, 0);
1018                     break;
1019
1020                 case 'V':
1021                     OptVersion (Arg, 0);
1022                     break;
1023
1024                 case 'W':
1025                     WarnLevel = atoi (GetArg (&I, 2));
1026                     break;
1027
1028                 default:
1029                     UnknownOption (Arg);
1030                     break;
1031
1032             }
1033         } else {
1034             /* Filename. Check if we already had one */
1035             if (InFile) {
1036                 fprintf (stderr, "%s: Don't know what to do with `%s'\n",
1037                          ProgName, Arg);
1038                 exit (EXIT_FAILURE);
1039             } else {
1040                 InFile = Arg;
1041             }
1042         }
1043
1044         /* Next argument */
1045         ++I;
1046     }
1047
1048     /* Do we have an input file? */
1049     if (InFile == 0) {
1050         fprintf (stderr, "%s: No input files\n", ProgName);
1051         exit (EXIT_FAILURE);
1052     }
1053
1054     /* Add the default include search paths. */
1055     FinishIncludePaths ();
1056
1057     /* If no CPU given, use the default CPU for the target */
1058     if (GetCPU () == CPU_UNKNOWN) {
1059         if (Target != TGT_UNKNOWN) {
1060             SetCPU (GetTargetProperties (Target)->DefaultCPU);
1061         } else {
1062             SetCPU (CPU_6502);
1063         }
1064     }
1065
1066     /* If no memory model was given, use the default */
1067     if (MemoryModel == MMODEL_UNKNOWN) {
1068         SetMemoryModel (MMODEL_NEAR);
1069     }
1070
1071     /* Set the default segment sizes according to the memory model */
1072     SetSegmentSizes ();
1073
1074     /* Initialize the scanner, open the input file */
1075     InitScanner (InFile);
1076
1077     /* Define the default options */
1078     SetOptions ();
1079
1080     /* Assemble the input */
1081     Assemble ();
1082
1083     /* If we didn't have any errors, check the pseudo insn stacks */
1084     if (ErrorCount == 0) {
1085         CheckPseudo ();
1086     }
1087
1088     /* If we didn't have any errors, check and cleanup the unnamed labels */
1089     if (ErrorCount == 0) {
1090         ULabDone ();
1091     }
1092
1093     /* If we didn't have any errors, check the symbol table */
1094     if (ErrorCount == 0) {
1095         SymCheck ();
1096     }
1097
1098     /* If we didn't have any errors, check the hll debug symbols */
1099     if (ErrorCount == 0) {
1100         DbgInfoCheck ();
1101     }
1102
1103     /* If we didn't have any errors, close the file scope lexical level */
1104     if (ErrorCount == 0) {
1105         SymLeaveLevel ();
1106     }
1107
1108     /* If we didn't have any errors, check and resolve the segment data */
1109     if (ErrorCount == 0) {
1110         SegDone ();
1111     }
1112
1113     /* If we didn't have any errors, check the assertions */
1114     if (ErrorCount == 0) {
1115         CheckAssertions ();
1116     }
1117
1118     /* Dump the data */
1119     if (Verbosity >= 2) {
1120         SymDump (stdout);
1121         SegDump ();
1122     }
1123
1124     /* If we didn't have an errors, finish off the line infos */
1125     DoneLineInfo ();
1126
1127     /* If we didn't have any errors, create the object, listing and
1128     ** dependency files
1129     */
1130     if (ErrorCount == 0) {
1131         CreateObjFile ();
1132         if (SB_GetLen (&ListingName) > 0) {
1133             CreateListing ();
1134         }
1135        CreateDependencies ();
1136     }
1137
1138     /* Close the input file */
1139     DoneScanner ();
1140
1141     /* Return an apropriate exit code */
1142     return (ErrorCount == 0)? EXIT_SUCCESS : EXIT_FAILURE;
1143 }