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