]> git.sur5r.net Git - cc65/blob - doc/ca65.sgml
GetFile fixes
[cc65] / doc / ca65.sgml
1
2 <!doctype linuxdoc system>
3
4 <article>
5 <title>ca65 Users Guide
6 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
7 <date>19.07.2000, 29.11.2000, 02.10.2001
8
9 <abstract>
10 ca65 is a powerful macro assembler for the 6502, 65C02 and 65816 CPUs. It is
11 used as a companion assembler for the cc65 crosscompiler, but it may also be
12 used as a standalone product.
13 </abstract>
14
15 <!-- Table of contents -->
16 <toc>
17
18 <!-- Begin the document -->
19
20 <sect>Overview<p>
21
22 ca65 is a replacement for the ra65 assembler that was part of the cc65 C
23 compiler, originally developed by John R. Dunning. I had some problems with
24 ra65 and the copyright does not permit some things which I wanted to be
25 possible, so I decided to write a completely new assembler/linker/archiver
26 suite for the cc65 compiler. ca65 is part of this suite.
27
28 Some parts of the assembler (code generation and some routines for symbol
29 table handling) are taken from an older crossassembler named a816 written
30 by me a long time ago.
31
32
33 <sect1>Design criteria<p>
34
35 Here's a list of the design criteria, that I considered important for the
36 development:
37
38 <itemize>
39
40 <item>  The assembler must support macros. Macros are not essential, but they
41         make some things easier, especially when you use the assembler in the
42         backend of a compiler.
43 <item>  The assembler must support the newer 65C02 and 65816 CPUs. I have been
44         thinking about a 65816 backend for the C compiler, and even my old
45         a816 assembler had support for these CPUs, so this wasn't really a
46         problem.
47 <item>  The assembler must produce relocatable code. This is necessary for the
48         compiler support, and it is more convenient.
49 <item>  Conditional assembly must be supported. This is a must for bigger
50         projects written in assembler (like Elite128).
51 <item>  The assembler must support segments, and it must support more than
52         three segments (this is the count, most other assemblers support).
53         Having more than one code segments helps developing code for systems
54         with a divided ROM area (like the C64).
55 <item>  The linker must be able to resolve arbitrary expressions. It should
56         be able to get things like
57 <tscreen><verb>
58         .import S1, S2
59         .export Special
60         Special = 2*S1 + S2/7
61 </verb></tscreen>
62         right.
63 <item>  True lexical nesting for symbols. This is very convenient for larger
64         assembly projects.
65 <item>  "Cheap" local symbols without lexical nesting for those quick, late
66         night hacks.
67 <item>  I liked the idea of "options" as Anre Fachats .o65 format has it, so I
68         introduced the concept into the object file format use by the new cc65
69         binutils.
70 <item>  The assembler will be a one pass assembler. There was no real need for
71         this decision, but I've written several multipass assemblers, and it
72         started to get boring. A one pass assembler needs much more elaborated
73         data structures, and because of that it's much more fun:-)
74 <item>  Non-GPLed code that may be used in any project without restrictions or
75         fear of "GPL infecting" other code.
76 </itemize>
77 <p>
78
79
80 <sect>Usage<p>
81
82
83 <sect1>Command line option overview<p>
84
85 The assembler accepts the following options:
86
87 <tscreen><verb>
88 ---------------------------------------------------------------------------
89 Usage: ca65 [options] file
90 Short options:
91   -D name[=value]       Define a symbol
92   -I dir                Set an include directory search path
93   -U                    Mark unresolved symbols as import
94   -V                    Print the assembler version
95   -W n                  Set warning level n
96   -g                    Add debug info to object file
97   -h                    Help (this text)
98   -i                    Ignore case of symbols
99   -l                    Create a listing if assembly was ok
100   -o name               Name the output file
101   -s                    Enable smart mode
102   -t sys                Set the target system
103   -v                    Increase verbosity
104
105 Long options:
106   --auto-import         Mark unresolved symbols as import
107   --cpu type            Set cpu type
108   --debug-info          Add debug info to object file
109   --feature name        Set an emulation feature
110   --help                Help (this text)
111   --ignore-case         Ignore case of symbols
112   --include-dir dir     Set an include directory search path
113   --listing             Create a listing if assembly was ok
114   --pagelength n        Set the page length for the listing
115   --smart               Enable smart mode
116   --target sys          Set the target system
117   --verbose             Increase verbosity
118   --version             Print the assembler version
119 ---------------------------------------------------------------------------
120 </verb></tscreen>
121
122
123 <sect1>Command line options in detail<p>
124
125 Here is a description of all the command line options:
126
127 <descrip>
128
129   <tag><tt>--cpu type</tt></tag>
130
131   Set the default for the CPU type. The option takes a parameter, which
132   may be one of
133
134         6502, 65C02, 65816 and sunplus
135
136   The latter (sunplus) is not available in the freeware version, because the
137   instruction set of the sunplus CPU is "confidential".
138
139
140   <label id="option--feature">
141   <tag><tt>--feature name</tt></tag>
142
143   Enable an emulation feature. This is identical as using <tt/.FEATURE/
144   in the source with two exceptions: Feature names must be lower case, and
145   each feature must be specified by using an extra <tt/--feature/ option,
146   comma separated lists are not allowed.
147
148   See the discussion of the <tt><ref id=".FEATURE" name=".FEATURE"></tt>
149   command for a list of emulation features.
150
151
152   <label id="option-g">
153   <tag><tt>-g, --debug-info</tt></tag>
154
155   When this option (or the equivalent control command <tt/.DEBUGINFO/) is
156   used, the assembler will add a section to the object file that contains
157   all symbols (including local ones) together with the symbol values and
158   source file positions. The linker will put these additional symbols into
159   the VICE label file, so even local symbols can be seen in the VICE
160   monitor.
161
162
163   <tag><tt>-h, --help</tt></tag>
164
165   Print the short option summary shown above.
166
167
168   <tag><tt>-i, --ignore-case</tt></tag>
169
170   This option makes the assembler case insensitive on identifiers and labels.
171   This option will override the default, but may itself be overriden by the
172   <tt><ref id=".CASE" name=".CASE"></tt> control command.
173
174
175   <tag><tt>-l, --listing</tt></tag>
176
177   Generate an assembler listing. The listing file will always have the
178   name of the main input file with the extension replaced by ".lst". This
179   may change in future versions.
180
181
182   <tag><tt>-o name</tt></tag>
183
184   The default output name is the name of the input file with the extension
185   replaced by ".o". If you don't like that, you may give another name with
186   the -o option. The output file will be placed in the same directory as
187   the source file, or, if -o is given, the full path in this name is used.
188
189
190   <tag><tt>--pagelength n</tt></tag>
191
192   sets the length of a listing page in lines. See the <tt><ref
193   id=".PAGELENGTH" name=".PAGELENGTH"></tt> directive for more information.
194
195
196   <tag><tt>-s, --smart-mode</tt></tag>
197
198   In smart mode (enabled by -s or the <tt><ref id=".SMART" name=".SMART"></tt>
199   pseudo instruction) the assembler will track usage of the <tt/REP/ and
200   <tt/SEP/ instructions in 65816 mode and update the operand sizes
201   accordingly. If the operand of such an instruction cannot be evaluated by
202   the assembler (for example, because the operand is an imported symbol), a
203   warning is issued.
204
205   Beware: Since the assembler cannot trace the execution flow this may
206   lead to false results in some cases. If in doubt, use the .ixx and .axx
207   instructions to tell the assembler about the current settings. Smart
208   mode is off by default.
209
210
211   <label id="option-t">
212   <tag><tt>-t sys, --target sys</tt></tag>
213
214   Set the target system. This will enable translation of character strings
215   and character constants into the character set of the target platform.
216   The default for the target system is "none", which means that no translation
217   will take place. The assembler supports the same target systems as the
218   compiler, see there for a list.
219
220
221   <tag><tt>-v, --verbose</tt></tag>
222
223   Increase the assembler verbosity. Usually only needed for debugging
224   purposes. You may use this option more than one time for even more
225   verbose output.
226
227
228   <tag><tt>-D</tt></tag>
229
230   This option allows you to define symbols on the command line. Without a
231   value, the symbol is defined with the value zero. When giving a value,
232   you may use the '&dollar;' prefix for hexadecimal symbols. Please note
233   that for some operating systems, '&dollar;' has a special meaning, so
234   you may have to quote the expression.
235
236
237   <tag><tt>-I dir, --include-dir dir</tt></tag>
238
239   Name a directory which is searched for include files. The option may be
240   used more than once to specify more than one directory to search. The
241   current directory is always searched first before considering any
242   additional directores.
243
244
245   <tag><tt>-U, --auto-import</tt></tag>
246
247   Mark symbols that are not defined in the sources as imported symbols. This
248   should be used with care since it delays error messages about typos and such
249   until the linker is run. The compiler uses the equivalent of this switch
250   (<tt><ref id=".AUTOIMPORT" name=".AUTOIMPORT"></tt>) to enable auto imported
251   symbols for the runtime library. However, the compiler is supposed to
252   generate code that runs through the assembler without problems, something
253   which is not always true for assembler programmers.
254
255
256   <tag><tt>-V, --version</tt></tag>
257
258   Print the version number of the assembler. If you send any suggestions
259   or bugfixes, please include the version number.
260
261
262   <label id="option-W">
263   <tag><tt>-Wn</tt></tag>
264
265   Set the warning level for the assembler. Using -W2 the assembler will
266   even warn about such things like unused imported symbols. The default
267   warning level is 1, and it would probably be silly to set it to
268   something lower.
269
270 </descrip>
271 <p>
272
273
274 <sect>Input format<p>
275
276 The assembler accepts the standard 6502/65816 assembler syntax. One line may
277 contain a label (which is identified by a colon), and, in addition to the
278 label, an assembler mnemonic, a macro, or a control command (see section <ref
279 id="control-commands" name="Control Commands"> for supported control
280 commands). Alternatively, the line may contain a symbol definition using the
281 '=' token. Everything after a semicolon is handled as a comment (that is, it
282 is ignored).
283
284 Here are some examples for valid input lines:
285
286 <tscreen><verb>
287         Label:                          ; A label and a comment
288                 lda     #$20            ; A 6502 instruction plus comment
289         L1:     ldx     #$20            ; Same with label
290         L2:     .byte   "Hello world"   ; Label plus control command
291                 mymac   $20             ; Macro expansion
292                 MySym = 3*L1            ; Symbol definition
293         MaSym   = Label                 ; Another symbol
294 </verb></tscreen>
295
296 The assembler accepts all valid 6502 mnemonics when in 6502 mode (the
297 default). The assembler accepts all valid 65SC02 mnemonics when in 65SC02 mode
298 (after a <tt><ref id=".PC02" name=".PC02"></tt> command is found). The
299 assembler accepts all valid 65816 mnemonics with a few exceptions after a
300 .P816 command is found. These exceptions are listed below.
301
302 In 65816 mode several aliases are accepted in addition to the official
303 mnemonics:
304
305 <tscreen><verb>
306         BGE is an alias for BCS
307         BLT is an alias for BCC
308         CPA is an alias for CMP
309         DEA is an alias for DEC A
310         INA is an alias for INC A
311         SWA is an alias for XBA
312         TAD is an alias for TCD
313         TAS is an alias for TCS
314         TDA is an alias for TDC
315         TSA is an alias for TSC
316 </verb></tscreen>
317
318 Evaluation of banked expressions in 65816 mode differs slightly from the
319 official syntax:
320
321 Instead of accepting a 24 bit address (something that is difficult for
322 the assembler to determine and would have required one more special
323 .import command), the bank and the absolute address in that bank are
324 separated by a dot:
325
326 <tscreen><verb>
327         jsl     3.$1234         ; Call subroutine at $1234 in bank 3
328 </verb></tscreen>
329
330 For literal values, the assembler accepts the widely used number formats:
331 A preceeding '&dollar;' denotes a hex value, a preceeding '%' denotes a
332 binary value, and a bare number is interpeted as a decimal. There are
333 currently no octal values and no floats.
334 <p>
335
336
337 <sect>Expressions<p>
338
339
340 <sect1>Expression evaluation<p>
341
342 All expressions are evaluated with (at least) 32 bit precision. An
343 expression may contain constant values and any combination of internal and
344 external symbols. Expressions that cannot be evaluated at assembly time
345 are stored inside the object file for evaluation by the linker.
346 Expressions referencing imported symbols must always be evaluated by the
347 linker.
348
349
350 <sect1>Size of an expressions result<p>
351
352 Sometimes, the assembler must know about the size of the value that is the
353 result of an expression. This is usually the case, if a decision has to be
354 made, to generate a zero page or an absolute memory references. In this
355 case, the assembler has to make some assumptions about the result of an
356 expression:
357
358 <itemize>
359 <item>  If the result of an expression is constant, the actual value is
360         checked to see if it's a byte sized expression or not.
361 <item>  If the expression is explicitly casted to a byte sized expression by
362         one of the '&gt;'/'&lt;' operators, it is a byte expression.
363 <item>  If this is not the case, and the expression contains a symbol,
364         explicitly declared as zero page symbol (by one of the .importzp or
365         .exportzp instructions), then the whole expression is assumed to be
366         byte sized.
367 <item>  If the expression contains symbols that are not defined, and these
368         symbols are local symbols, the enclosing scopes are searched for a
369         symbol with the same name. If one exists and this symbol is defined,
370         it's attributes are used to determine the result size.
371 <item>  In all other cases the expression is assumed to be word sized.
372 </itemize>
373
374 Note: If the assembler is not able to evaluate the expression at assembly
375 time, the linker will evaluate it and check for range errors as soon as
376 the result is known.
377
378
379 <sect1>Boolean expressions<p>
380
381 In the context of a boolean expression, any non zero value is evaluated as
382 true, any other value to false. The result of a boolean expression is 1 if
383 it's true, and zero if it's false. There are boolean operators with extrem
384 low precedence with version 2.x (where x &gt; 0). The <tt/.AND/ and <tt/.OR/
385 operators are shortcut operators. That is, if the result of the expression is
386 already known, after evaluating the left hand side, the right hand side is
387 not evaluated.
388
389
390 <sect1>Available operators<p>
391
392 Available operators sorted by precedence:
393
394 <tscreen><verb>
395     Op          Description                             Precedence
396   -------------------------------------------------------------------
397     .CONCAT     Builtin function                        0
398     .LEFT       Builtin function                        0
399     .MID        Builtin function                        0
400     .RIGHT      Builtin function                        0
401     .STRING     Builtin function                        0
402
403     *           Builtin pseudo variable (r/o)           1
404     .BLANK      Builtin function                        1
405     .CONST      Builtin function                        1
406     .CPU        Builtin pseudo variable (r/o)           1
407     .DEFINED    Builtin function                        1
408     .MATCH      Builtin function                        1
409     .TCOUNT     Builtin function                        1
410     .TIME       Builtin function                        1
411     .XMATCH     Builtin function                        1
412     .PARAMCOUNT Builtin pseudo variable (r/o)           1
413     .REFERENCED Builtin function                        1
414     ::          Global namespace override               1
415     +           Unary plus                              1
416     -           Unary minus                             1
417     ~           Unary bitwise not                       1
418     .BITNOT     Unary bitwise not                       1
419     &lt;           Low byte operator                       1
420     &gt;           High byte operator                      1
421
422     *           Multiplication                          2
423     /           Division                                2
424     .MOD        Modulo operation                        2
425     &amp;           Bitwise and                             2
426     .BITAND     Bitwise and                             2
427     ^           Bitwise xor                             2
428     .BITXOR     Bitwise xor                             2
429     &lt;&lt;          Shift left operator                     2
430     .SHL        Shift left operator                     2
431     &gt;&gt;          Shift right operator
432     .SHR        Shift right operator                    2
433
434     +           Binary plus                             3
435     -           Binary minus                            3
436     |           Binary or                               3
437     .BITOR      Binary or                               3
438
439     =           Compare operation (equal)               4
440     &lt;&gt;          Compare operation (not equal)           4
441     &lt;           Compare operation (less)                4
442     &gt;           Compare operation (greater)             4
443     &lt;=          Compare operation (less or equal)       4
444     &gt;=          Compare operation (greater or equal)    4
445
446     &amp;&amp;          Boolean and                             5
447     .AND        Boolean and                             5
448     .XOR        Boolean xor                             5
449
450     ||          Boolean or                              6
451     .OR         Boolean or                              6
452
453     !           Boolean not                             7
454     .NOT        Boolean not                             7
455 </verb></tscreen>
456
457
458 To force a specific order of evaluation, braces may be used as usual.
459
460 Some of the pseudo variables mentioned above need some more explanation:
461
462 <tscreen><verb>
463   *             This symbol is replaced by the value of the program
464                 counter at start of the current instruction. Note, that
465                 '*' yields a rvalue, that means, you cannot assign to it.
466                 Use <tt/.ORG/ to set the program counter in sections with
467                 absolute code.
468 </verb></tscreen>
469 <p>
470
471
472
473 <sect>Symbols and labels<p>
474
475 The assembler allows you to use symbols instead of naked values to make
476 the source more readable. There are a lot of different ways to define and
477 use symbols and labels, giving a lot of flexibility.
478
479
480 <sect1>Numeric constants<p>
481
482 Numeric constants are defined using the equal sign. After doing
483
484 <tscreen><verb>
485       two = 2
486 </verb></tscreen>
487
488 may use the symbol "two" in every place where a number is expected, and it is
489 evaluated to the value 2 in this context. An example would be
490
491 <tscreen><verb>
492       four = two * two
493 </verb></tscreen>
494
495
496 <sect1>Standard labels<p>
497
498 A label is defined by writing the name of the label at the start of the line
499 (before any instruction mnemonic, macro or pseudo directive), followed by a
500 colon. This will declare a symbol with the given name and the value of the
501 current program counter.
502
503
504 <sect1>Local labels and symbols<p>
505
506 Using the <tt><ref id=".PROC" name=".PROC"></tt> directive, it is possible to
507 create regions of code where the names of labels and symbols are local to this
508 region. They are not known outside of this region and cannot be accessed from
509 there. Such regions may be nested like PROCEDUREs in Pascal.
510
511 See the description of the <tt><ref id=".PROC" name=".PROC"></tt>
512 directive for more information.
513
514
515 <sect1>Cheap local labels<p>
516
517 Cheap local labels are defined like standard labels, but the name of the
518 label must begin with a special symbol (usually '@', but this can be
519 changed by the <tt><ref id=".LOCALCHAR" name=".LOCALCHAR"></tt>
520 directive).
521
522 Cheap local labels are visible only between two non cheap labels. As soon as a
523 standard symbol is encountered (this may also be a local symbol if inside a
524 region defined with the <tt><ref id=".PROC" name=".PROC"></tt> directive), the
525 cheap local symbol goes out of scope.
526
527 You may use cheap local labels as an easy way to reuse common label
528 names like "Loop". Here is an example:
529
530 <tscreen><verb>
531         Clear:  lda    #$00             ; Global label
532                 ldy    #$20
533         @Loop:  sta    Mem,y            ; Local label
534                 dey
535                 bne    @Loop            ; Ok
536                 rts
537         Sub:    ...                     ; New global label
538                 bne    @Loop            ; ERROR: Unknown identifier!
539 </verb></tscreen>
540
541 <sect1>Unnamed labels<p>
542
543 If you really want to write messy code, there are also unnamed
544 labels. These labels do not have a name (you guessed that already,
545 didn't you?). A colon is used to mark the absence of the name.
546
547 Unnamed labels may be accessed by using the colon plus several minus
548 or plus characters as a label designator. Using the '-' characters
549 will create a back reference (use the n'th label backwards), using
550 '+' will create a forward reference (use the n'th label in forward
551 direction). An example will help to understand this:
552
553 <tscreen><verb>
554         :       lda     (ptr1),y        ; #1
555                 cmp     (ptr2),y
556                 bne     :+              ; -> #2
557                 tax
558                 beq     :+++            ; -> #4
559                 iny
560                 bne     :-              ; -> #1
561                 inc     ptr1+1
562                 inc     ptr2+1
563                 bne     :-              ; -> #1
564
565         :       bcs     :+              ; #2 -> #3
566                 ldx     #$FF
567                 rts
568
569         :       ldx     #$01            ; #3
570         :       rts                     ; #4
571 </verb></tscreen>
572
573 As you can see from the example, unnamed labels will make even short
574 sections of code hard to understand, because you have to count labels
575 to find branch targets (this is the reason why I for my part do
576 prefer the "cheap" local labels). Nevertheless, unnamed labels are
577 convenient in some situations, so it's your decision.
578
579
580 <sect1>Using macros to define labels and constants<p>
581
582 While there are drawbacks with this approach, it may be handy in some
583 situations. Using <tt><ref id=".DEFINE" name=".DEFINE"></tt>, it is
584 possible to define symbols or constants that may be used elsewhere. Since
585 the macro facility works on a very low level, there is no scoping. On the
586 other side, you may also define string constants this way (this is not
587 possible with the other symbol types).
588
589 Example:
590
591 <tscreen><verb>
592         .DEFINE two     2
593         .DEFINE version "SOS V2.3"
594
595         four = two * two        ; Ok
596         .byte   version         ; Ok
597
598         .PROC                   ; Start local scope
599         two = 3                 ; Will give "2 = 3" - invalid!
600         .ENDPROC
601 </verb></tscreen>
602
603
604 <sect1>Symbols and <tt>.DEBUGINFO</tt><p>
605
606 If <tt><ref id=".DEBUGINFO" name=".DEBUGINFO"></tt> is enabled (or <ref
607 id="option-g" name="-g"> is given on the command line), global, local and
608 cheap local labels are written to the object file and will be available in the
609 symbol file via the linker. Unnamed labels are not written to the object file,
610 because they don't have a name which would allow to access them.
611
612
613
614 <sect>Control commands<label id="control-commands">
615
616 <p>
617 Here's a list of all control commands and a description, what they do:
618
619
620 <sect1><tt>.A16</tt><label id=".A16"><p>
621
622   Valid only in 65816 mode. Switch the accumulator to 16 bit.
623
624   Note: This command will not emit any code, it will tell the assembler to
625   create 16 bit operands for immediate accumulator adressing mode.
626
627   See also: <tt><ref id=".SMART" name=".SMART"></tt>
628
629
630 <sect1><tt>.A8</tt><label id=".A8"><p>
631
632   Valid only in 65816 mode. Switch the accumulator to 8 bit.
633
634   Note: This command will not emit any code, it will tell the assembler to
635   create 8 bit operands for immediate accu adressing mode.
636
637   See also: <tt><ref id=".SMART" name=".SMART"></tt>
638
639
640 <sect1><tt>.ADDR</tt><label id=".ADDR"><p>
641
642   Define word sized data. In 6502 mode, this is an alias for <tt/.WORD/ and
643   may be used for better readability if the data words are address values. In
644   65816 mode, the address is forced to be 16 bit wide to fit into the current
645   segment. See also <tt><ref id=".FARADDR" name=".FARADDR"></tt>. The command
646   must be followed by a sequence of (not necessarily constant) expressions.
647
648   Example:
649
650   <tscreen><verb>
651         .addr   $0D00, $AF13, _Clear
652   </verb></tscreen>
653
654   See: <tt><ref id=".FARADDR" name=".FARADDR"></tt>, <tt><ref id=".WORD"
655        name=".WORD"></tt>
656
657
658 <sect1><tt>.ALIGN</tt><label id=".ALIGN"><p>
659
660   Align data to a given boundary. The command expects a constant integer
661   argument that must be a power of two, plus an optional second argument
662   in byte range. If there is a second argument, it is used as fill value,
663   otherwise the value defined in the linker configuration file is used
664   (the default for this value is zero).
665
666   Since alignment depends on the base address of the module, you must
667   give the same (or a greater) alignment for the segment when linking.
668   The linker will give you a warning, if you don't do that.
669
670   Example:
671
672   <tscreen><verb>
673         .align  256
674   </verb></tscreen>
675
676
677 <sect1><tt>.ASCIIZ</tt><label id=".ASCIIZ"><p>
678
679   Define a string with a trailing zero.
680
681   Example:
682
683   <tscreen><verb>
684         Msg:    .asciiz "Hello world"
685   </verb></tscreen>
686
687   This will put the string "Hello world" followed by a binary zero into
688   the current segment. There may be more strings separated by commas, but
689   the binary zero is only appended once (after the last one).
690
691
692 <sect1><tt>.AUTOIMPORT</tt><label id=".AUTOIMPORT"><p>
693
694   Is followed by a plus or a minus character. When switched on (using a
695   +), undefined symbols are automatically marked as import instead of
696   giving errors. When switched off (which is the default so this does not
697   make much sense), this does not happen and an error message is
698   displayed. The state of the autoimport flag is evaluated when the
699   complete source was translated, before outputing actual code, so it is
700   <em/not/ possible to switch this feature on or off for separate sections
701   of code. The last setting is used for all symbols.
702
703   You should probably not use this switch because it delays error
704   messages about undefined symbols until the link stage. The cc65
705   compiler (which is supposed to produce correct assembler code in all
706   circumstances, something which is not true for most assembler
707   programmers) will insert this command to avoid importing each and every
708   routine from the runtime library.
709
710   Example:
711
712   <tscreen><verb>
713         .autoimport     +       ; Switch on auto import
714   </verb></tscreen>
715
716
717 <sect1><tt>.BLANK</tt><label id=".BLANK"><p>
718
719   Builtin function. The function evaluates its argument in braces and
720   yields "false" if the argument is non blank (there is an argument), and
721   "true" if there is no argument. As an example, the <tt/.IFBLANK/ statement
722   may be replaced by
723
724   <tscreen><verb>
725         .if     .blank(arg)
726   </verb></tscreen>
727
728
729 <sect1><tt>.BSS</tt><label id=".BSS"><p>
730
731   Switch to the BSS segment. The name of the BSS segment is always "BSS",
732   so this is a shortcut for
733
734   <tscreen><verb>
735         .segment  "BSS"
736   </verb></tscreen>
737
738   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
739
740
741 <sect1><tt>.BYT, .BYTE</tt><label id=".BYTE"><p>
742
743   Define byte sized data. Must be followed by a sequence of (byte ranged)
744   expressions or strings.
745
746   Example:
747
748   <tscreen><verb>
749         .byte   "Hello "
750         .byt    "world", $0D, $00
751   </verb></tscreen>
752
753
754 <sect1><tt>.CASE</tt><label id=".CASE"><p>
755
756   Switch on or off case sensitivity on identifiers. The default is off
757   (that is, identifiers are case sensitive), but may be changed by the
758   -i switch on the command line.
759   The command must be followed by a '+' or '-' character to switch the
760   option on or off respectively.
761
762   Example:
763
764   <tscreen><verb>
765         .case   -               ; Identifiers are not case sensitive
766   </verb></tscreen>
767
768
769 <sect1><tt>.CHARMAP</tt><label id=".CHARMAP"><p>
770
771   Apply a custom mapping for characters. The command is followed by two
772   numbers in the range 1..255. The first one is the index of the source
773   character, the second one is the mapping. The mapping applies to all
774   character and string constants when they generate output, and overrides
775   a mapping table specified with the <tt><ref id="option-t" name="-t"></tt>
776   command line switch.
777
778   Example:
779
780   <tscreen><verb>
781         .charmap        $41, $61        ; Map 'A' to 'a'
782   </verb></tscreen>
783
784
785 <sect1><tt>.CODE</tt><label id=".CODE"><p>
786
787   Switch to the CODE segment. The name of the CODE segment is always
788   "CODE", so this is a shortcut for
789
790   <tscreen><verb>
791         .segment  "CODE"
792   </verb></tscreen>
793
794   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
795
796
797 <sect1><tt>.CONDES</tt><label id=".CONDES"><p>
798
799   Export a symbol and mark it in a special way. The linker is able to build
800   tables of all such symbols. This may be used to automatically create a list
801   of functions needed to initialize linked library modules.
802
803   Note: The linker has a feature to build a table of marked routines, but it
804   is your code that must call these routines, so just declaring a symbol with
805   <tt/.CONDES/ does nothing by itself.
806
807   All symbols are exported as an absolute (16 bit) symbol. You don't need to
808   use an additional <tt><ref id=".EXPORT" name=".EXPORT"></tt> statement, this
809   is implied by <tt/.CONDES/.
810
811   <tt/.CONDES/ is followed by the type, which may be <tt/constructor/,
812   <tt/destructor/ or a numeric value between 0 and 6 (where 0 is the same as
813   specifiying <tt/constructor/ and 1 is equal to specifying <tt/destructor/).
814   The <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt> and <tt><ref
815   id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> commands are actually shortcuts
816   for <tt/.CONDES/ with a type of <tt/constructor/ resp. <tt/destructor/.
817
818   After the type, an optional priority may be specified. If no priority is
819   given, the default priority of 7 is used. Be careful when assigning
820   priorities to your own module constructors so they won't interfere with the
821   ones in the cc65 library.
822
823   Example:
824
825   <tscreen><verb>
826         .condes         ModuleInit, constructor
827         .condes         ModInit, 0, 16
828   </verb></tscreen>
829
830   See the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt> and <tt><ref
831   id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> commands and the separate section
832   <ref id="condes" name="Module constructors/destructors"> explaining the
833   feature in more detail.
834
835
836 <sect1><tt>.CONCAT</tt><label id=".CONCAT"><p>
837
838   Builtin function. The function allows to concatenate a list of string
839   constants separated by commas. The result is a string constant that
840   is the concatentation of all arguments. This function is most useful
841   in macros and when used together with the <tt/.STRING/ builtin function.
842   The function may be used in any case where a string constant is
843   expected.
844
845   Example:
846
847   <tscreen><verb>
848         .include        .concat ("myheader", ".", "inc")
849   </verb></tscreen>
850
851   This is the same as the command
852
853   <tscreen><verb>
854         .include        "myheader.inc"
855   </verb></tscreen>
856
857
858 <sect1><tt>.CONST</tt><label id=".CONST"><p>
859
860   Builtin function. The function evaluates its argument in braces and
861   yields "true" if the argument is a constant expression (that is, an
862   expression that yields a constant value at assembly time) and "false"
863   otherwise. As an example, the .IFCONST statement may be replaced by
864
865   <tscreen><verb>
866         .if     .const(a + 3)
867   </verb></tscreen>
868
869
870 <sect1><tt>.CONSTRUCTOR</tt><label id=".CONSTRUCTOR"><p>
871
872   Export a symbol and mark it as a module constructor. This may be used
873   together with the linker to build a table of constructor subroutines that
874   are called by the startup code.
875
876   Note: The linker has a feature to build a table of marked routines, but it
877   is your code that must call these routines, so just declaring a symbol as
878   constructor does nothing by itself.
879
880   A constructor is always exported as an absolute (16 bit) symbol. You don't
881   need to use an additional <tt/.export/ statement, this is implied by
882   <tt/.constructor/. It may have an optional priority that is separated by a
883   comma. If no priority is given, the default priority of 7 is used. Be
884   careful when assigning priorities to your own module constructors so they
885   won't interfere with the ones in the cc65 library.
886
887   Example:
888
889   <tscreen><verb>
890         .constructor    ModuleInit
891         .constructor    ModInit, 16
892   </verb></tscreen>
893
894   See the <tt><ref id=".CONDES" name=".CONDES"></tt> and <tt><ref
895   id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> commands and the separate section
896   <ref id="condes" name="Module constructors/destructors"> explaining the
897   feature in more detail.
898
899
900 <sect1><tt>.CPU</tt><label id=".CPU"><p>
901
902   Reading this pseudo variable will give a constant integer value that
903   tells which instruction set is currently enabled. Possible values are:
904
905   <tscreen><verb>
906         0 -->   6502
907         1 -->   65SC02
908         2 -->   65SC816
909         3 -->   SunPlus SPC
910   </verb></tscreen>
911
912   It may be used to replace the .IFPxx pseudo instructions or to construct
913   even more complex expressions.
914
915   Example:
916
917   <tscreen><verb>
918         .if     (.cpu = 0) .or (.cpu = 1)
919                 txa
920                 pha
921                 tya
922                 pha
923         .else
924                 phx
925                 phy
926         .endif
927   </verb></tscreen>
928
929
930 <sect1><tt>.DATA</tt><label id=".DATA"><p>
931
932   Switch to the DATA segment. The name of the DATA segment is always
933   "DATA", so this is a shortcut for
934
935   <tscreen><verb>
936         .segment  "DATA"
937   </verb></tscreen>
938
939   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
940
941
942 <sect1><tt>.DBYT</tt><label id=".DBYT"><p>
943
944   Define word sized data with the hi and lo bytes swapped (use <tt/.WORD/ to
945   create word sized data in native 65XX format). Must be followed by a
946   sequence of (word ranged) expressions.
947
948   Example:
949
950   <tscreen><verb>
951         .dbyt   $1234, $4512
952   </verb></tscreen>
953
954   This will emit the bytes
955
956   <tscreen><verb>
957         $12 $34 $45 $12
958   </verb></tscreen>
959
960   into the current segment in that order.
961
962
963 <sect1><tt>.DEBUGINFO</tt><label id=".DEBUGINFO"><p>
964
965   Switch on or off debug info generation. The default is off (that is,
966   the object file will not contain debug infos), but may be changed by the
967   -g switch on the command line.
968   The command must be followed by a '+' or '-' character to switch the
969   option on or off respectively.
970
971   Example:
972
973   <tscreen><verb>
974         .debuginfo      +       ; Generate debug info
975   </verb></tscreen>
976
977
978 <sect1><tt>.DEFINE</tt><label id=".DEFINE"><p>
979
980   Start a define style macro definition. The command is followed by an
981   identifier (the macro name) and optionally by a list of formal arguments
982   in braces.
983   See section <ref id="macros" name="Macros">.
984
985
986 <sect1><tt>.DEF, .DEFINED</tt><label id=".DEFINED"><p>
987
988   Builtin function. The function expects an identifier as argument in braces.
989   The argument is evaluated, and the function yields "true" if the identifier
990   is a symbol that is already defined somewhere in the source file up to the
991   current position. Otherwise the function yields false. As an example, the
992   <tt><ref id=".IFDEF" name=".IFDEF"></tt> statement may be replaced by
993
994   <tscreen><verb>
995         .if     .defined(a)
996   </verb></tscreen>
997
998
999 <sect1><tt>.DESTRUCTOR</tt><label id=".DESTRUCTOR"><p>
1000
1001   Export a symbol and mark it as a module destructor. This may be used
1002   together with the linker to build a table of destructor subroutines that
1003   are called by the startup code.
1004
1005   Note: The linker has a feature to build a table of marked routines, but it
1006   is your code that must call these routines, so just declaring a symbol as
1007   constructor does nothing by itself.
1008
1009   A destructor is always exported as an absolute (16 bit) symbol. You don't
1010   need to use an additional <tt/.export/ statement, this is implied by
1011   <tt/.destructor/. It may have an optional priority that is separated by a
1012   comma. If no priority is given, the default priority of 7 is used. Be
1013   careful when assigning priorities to your own module destructors so they
1014   won't interfere with the ones in the cc65 library.
1015
1016   Example:
1017
1018   <tscreen><verb>
1019         .destructor     ModuleDone
1020         .destructor     ModDone, 16
1021   </verb></tscreen>
1022
1023   See the <tt><ref id=".CONDES" name=".CONDES"></tt> and <tt><ref
1024   id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt> commands and the separate
1025   section <ref id="condes" name="Module constructors/destructors"> explaining
1026   the feature in more detail.
1027
1028
1029 <sect1><tt>.DWORD</tt><label id=".DWORD"><p>
1030
1031   Define dword sized data (4 bytes) Must be followed by a sequence of
1032   expressions.
1033
1034   Example:
1035
1036   <tscreen><verb>
1037         .dword  $12344512, $12FA489
1038   </verb></tscreen>
1039
1040
1041 <sect1><tt>.ELSE</tt><label id=".ELSE"><p>
1042
1043   Conditional assembly: Reverse the current condition.
1044
1045
1046 <sect1><tt>.ELSEIF</tt><label id=".ELSEIF"><p>
1047
1048   Conditional assembly: Reverse current condition and test a new one.
1049
1050
1051 <sect1><tt>.END</tt><label id=".END"><p>
1052
1053   Forced end of assembly. Assembly stops at this point, even if the command
1054   is read from an include file.
1055
1056
1057 <sect1><tt>.ENDIF</tt><label id=".ENDIF"><p>
1058
1059   Conditional assembly: Close a <tt><ref id=".IF" name=".IF..."></tt> or
1060   <tt><ref id=".ELSE" name=".ELSE"></tt> branch.
1061
1062
1063 <sect1><tt>.ENDMAC, .ENDMACRO</tt><label id=".ENDMACRO"><p>
1064
1065   End of macro definition (see section <ref id="macros" name="Macros">).
1066
1067
1068 <sect1><tt>.ENDPROC</tt><label id=".ENDPROC"><p>
1069
1070   End of local lexical level (see <tt><ref id=".PROC" name=".PROC"></tt>).
1071
1072
1073 <sect1><tt>.ENDREP, .ENDREPEAT</tt><label id=".ENDREPEAT"><p>
1074
1075   End a <tt><ref id=".REPEAT" name=".REPEAT"></tt> block.
1076
1077
1078 <sect1><tt>.ERROR</tt><label id=".ERROR"><p>
1079
1080   Force an assembly error. The assembler will output an error message
1081   preceeded by "User error" and will <em/not/ produce an object file.
1082
1083   This command may be used to check for initial conditions that must be
1084   set before assembling a source file.
1085
1086   Example:
1087
1088   <tscreen><verb>
1089         .if     foo = 1
1090         ...
1091         .elseif bar = 1
1092         ...
1093         .else
1094         .error  "Must define foo or bar!"
1095         .endif
1096   </verb></tscreen>
1097
1098   See also the <tt><ref id=".WARNING" name=".WARNING"></tt> and <tt><ref
1099   id=".OUT" name=".OUT"></tt> directives.
1100
1101
1102 <sect1><tt>.EXITMAC, .EXITMACRO</tt><label id=".EXITMACRO"><p>
1103
1104   Abort a macro expansion immidiately. This command is often useful in
1105   recursive macros. See separate section <ref id="macros" name="Macros">.
1106
1107
1108 <sect1><tt>.EXPORT</tt><label id=".EXPORT"><p>
1109
1110   Make symbols accessible from other modules. Must be followed by a comma
1111   separated list of symbols to export.
1112
1113   Example:
1114
1115   <tscreen><verb>
1116         .export foo, bar
1117   </verb></tscreen>
1118
1119   See: <tt><ref id=".EXPORTZP" name=".EXPORTZP"></tt>
1120
1121
1122 <sect1><tt>.EXPORTZP</tt><label id=".EXPORTZP"><p>
1123
1124   Make symbols accessible from other modules. Must be followed by a comma
1125   separated list of symbols to export. The exported symbols are explicitly
1126   marked as zero page symols.
1127
1128   Example:
1129
1130   <tscreen><verb>
1131         .exportzp  foo, bar
1132   </verb></tscreen>
1133
1134   See: <tt><ref id=".EXPORT" name=".EXPORT"></tt>
1135
1136
1137 <sect1><tt>.FARADDR</tt><label id=".FARADDR"><p>
1138
1139   Define far (24 bit) address data. The command must be followed by a
1140   sequence of (not necessarily constant) expressions.
1141
1142   Example:
1143
1144   <tscreen><verb>
1145         .faraddr        DrawCircle, DrawRectangle, DrawHexagon
1146   </verb></tscreen>
1147
1148   See: <tt><ref id=".ADDR" name=".ADDR"></tt>
1149
1150
1151 <sect1><tt>.FEATURE</tt><label id=".FEATURE"><p>
1152
1153   This directive may be used to enable one or more compatibility features
1154   of the assembler. While the use of <tt/.FEATURE/ should be avoided when
1155   possible, it may be useful when porting sources written for other
1156   assemblers. There is no way to switch a feature off, once you have
1157   enabled it, so using
1158
1159   <tscreen><verb>
1160         .FEATURE        xxx
1161   </verb></tscreen>
1162
1163   will enable the feature until end of assembly is reached.
1164
1165   The following features are available:
1166
1167   <descrip>
1168
1169   <tag><tt>dollar_is_pc</tt></tag>
1170
1171     The dollar sign may be used as an alias for the star (`*'), which
1172     gives the value of the current PC in expressions.
1173     Note: Assignment to the pseudo variable is not allowed.
1174
1175   <tag><tt>labels_without_colons</tt></tag>
1176
1177     Allow labels without a trailing colon. These labels are only accepted,
1178     if they start at the beginning of a line (no leading white space).
1179
1180   <tag><tt>loose_string_term</tt></tag>
1181
1182     Accept single quotes as well as double quotes as terminators for string
1183     constants.
1184
1185   <tag><tt>loose_char_term</tt></tag>
1186
1187     Accept single quotes as well as double quotes as terminators for char
1188     constants.
1189
1190   <tag><tt>at_in_identifiers</tt></tag>
1191
1192     Accept the at character (`@') as a valid character in identifiers. The
1193     at character is not allowed to start an identifier, even with this
1194     feature enabled.
1195
1196   <tag><tt>dollar_in_identifiers</tt></tag>
1197
1198     Accept the dollar sign (`&dollar;') as a valid character in identifiers. The
1199     at character is not allowed to start an identifier, even with this
1200     feature enabled.
1201
1202   <tag><tt>leading_dot_in_identifiers</tt></tag>
1203
1204     Accept the dot (`.') as the first character of an identifier. This may be
1205     used for example to create macro names that start with a dot emulating
1206     control directives of other assemblers. Note however, that none of the
1207     reserved keywords built into the assembler, that starts with a dot, may be
1208     overridden. When using this feature, you may also get into trouble if
1209     later versions of the assembler define new keywords starting with a dot.
1210
1211   <tag><tt>pc_assignment</tt></tag>
1212
1213     Allow assignments to the PC symbol (`*' or `&dollar;' if <tt/dollar_is_pc/
1214     is enabled). Such an assignment is handled identical to the <tt><ref
1215     id=".ORG" name=".ORG"></tt> command (which is usually not needed, so just
1216     removing the lines with the assignments may also be an option when porting
1217     code written for older assemblers).
1218
1219   </descrip>
1220
1221   It is also possible to specify features on the command line using the
1222   <tt><ref id="option--feature" name="--feature"></tt> command line option.
1223   This is useful when translating sources written for older assemblers, when
1224   you don't want to change the source code.
1225
1226   As an example, to translate sources written for Andre Fachats xa65
1227   assembler, the features
1228
1229   <verb>
1230         labels_without_colons, pc_assignment, loose_char_term
1231   </verb>
1232
1233   may be helpful. They do not make ca65 completely compatible, so you may not
1234   be able to translate the sources without changes, even when enabling these
1235   features. However, I have found several sources that translate without
1236   problems when enabling these features on the command line.
1237
1238
1239 <sect1><tt>.FILEOPT, .FOPT</tt><label id=".FOPT"><p>
1240
1241   Insert an option string into the object file. There are two forms of
1242   this command, one specifies the option by a keyword, the second
1243   specifies it as a number. Since usage of the second one needs knowledge
1244   of the internal encoding, its use is not recommended and I will only
1245   describe the first form here.
1246
1247   The command is followed by one of the keywords
1248
1249   <tscreen><verb>
1250         author
1251         comment
1252         compiler
1253   </verb></tscreen>
1254
1255   a comma and a string. The option is written into the object file
1256   together with the string value. This is currently unidirectional and
1257   there is no way to actually use these options once they are in the
1258   object file.
1259
1260   Examples:
1261
1262   <tscreen><verb>
1263         .fileopt        comment, "Code stolen from my brother"
1264         .fileopt        compiler, "BASIC 2.0"
1265         .fopt           author, "J. R. User"
1266   </verb></tscreen>
1267
1268
1269 <sect1><tt>.FORCEIMPORT</tt><label id=".FORCEIMPORT"><p>
1270
1271   Import an absolute symbol from another module. The command is followed by a
1272   comma separated list of symbols to import. The command is similar to <tt>
1273   <ref id=".IMPORT" name=".IMPORT"></tt>, but the import reference is always
1274   written to the generated object file, even if the symbol is never referenced
1275   (<tt><ref id=".IMPORT" name=".IMPORT"></tt> will not generate import
1276   references for unused symbols).
1277
1278   Example:
1279
1280   <tscreen><verb>
1281         .forceimport    needthisone, needthistoo
1282   </verb></tscreen>
1283
1284   See: <tt><ref id=".IMPORT" name=".IMPORT"></tt>
1285
1286
1287 <sect1><tt>.GLOBAL</tt><label id=".GLOBAL"><p>
1288
1289   Declare symbols as global. Must be followed by a comma separated list of
1290   symbols to declare. Symbols from the list, that are defined somewhere in the
1291   source, are exported, all others are imported. Additional <tt><ref
1292   id=".IMPORT" name=".IMPORT"></tt> or <tt><ref id=".EXPORT"
1293   name=".EXPORT"></tt> commands for the same symbol are allowed.
1294
1295   Example:
1296
1297   <tscreen><verb>
1298         .global foo, bar
1299   </verb></tscreen>
1300
1301
1302 <sect1><tt>.GLOBALZP</tt><label id=".GLOBALZP"><p>
1303
1304   Declare symbols as global. Must be followed by a comma separated list of
1305   symbols to declare. Symbols from the list, that are defined somewhere in the
1306   source, are exported, all others are imported. Additional <tt><ref
1307   id=".IMPORTZP" name=".IMPORTZP"></tt> or <tt><ref id=".EXPORTZP"
1308   name=".EXPORTZP"></tt> commands for the same symbol are allowed. The symbols
1309   in the list are explicitly marked as zero page symols.
1310
1311   Example:
1312
1313   <tscreen><verb>
1314         .globalzp foo, bar
1315   </verb></tscreen>
1316
1317
1318 <sect1><tt>.I16</tt><label id=".I16"><p>
1319
1320   Valid only in 65816 mode. Switch the index registers to 16 bit.
1321
1322   Note: This command will not emit any code, it will tell the assembler to
1323   create 16 bit operands for immediate operands.
1324
1325   See also the <tt><ref id=".I8" name=".I8"></tt> and <tt><ref id=".SMART"
1326   name=".SMART"></tt> commands.
1327
1328
1329 <sect1><tt>.I8</tt><label id=".I8"><p>
1330
1331   Valid only in 65816 mode. Switch the index registers to 8 bit.
1332
1333   Note: This command will not emit any code, it will tell the assembler to
1334   create 8 bit operands for immediate operands.
1335
1336   See also the <tt><ref id=".I16" name=".I16"></tt> and <tt><ref id=".SMART"
1337   name=".SMART"></tt> commands.
1338
1339
1340 <sect1><tt>.IF</tt><label id=".IF"><p>
1341
1342   Conditional assembly: Evalute an expression and switch assembler output
1343   on or off depending on the expression. The expression must be a constant
1344   expression, that is, all operands must be defined.
1345
1346   A expression value of zero evaluates to FALSE, any other value evaluates
1347   to TRUE.
1348
1349
1350 <sect1><tt>.IFBLANK</tt><label id=".IFBLANK"><p>
1351
1352   Conditional assembly: Check if there are any remaining tokens in this line,
1353   and evaluate to FALSE if this is the case, and to TRUE otherwise. If the
1354   condition is not true, further lines are not assembled until an <tt><ref
1355   id=".ELSE" name=".ESLE"></tt>, <tt><ref id=".ELSEIF" name=".ELSEIF"></tt> or
1356   <tt><ref id=".ENDIF" name=".ENDIF"></tt> directive.
1357
1358   This command is often used to check if a macro parameter was given. Since an
1359   empty macro parameter will evaluate to nothing, the condition will evaluate
1360   to FALSE if an empty parameter was given.
1361
1362   Example:
1363
1364   <tscreen><verb>
1365         .macro     arg1, arg2
1366         .ifblank   arg2
1367                    lda     #arg1
1368         .else
1369                    lda     #arg2
1370         .endif
1371         .endmacro
1372   </verb></tscreen>
1373
1374   See also: <tt><ref id=".BLANK" name=".BLANK"></tt>
1375
1376
1377 <sect1><tt>.IFCONST</tt><label id=".IFCONST"><p>
1378
1379   Conditional assembly: Evaluate an expression and switch assembler output
1380   on or off depending on the constness of the expression.
1381
1382   A const expression evaluates to to TRUE, a non const expression (one
1383   containing an imported or currently undefined symbol) evaluates to
1384   FALSE.
1385
1386   See also: <tt><ref id=".CONST" name=".CONST"></tt>
1387
1388
1389 <sect1><tt>.IFDEF</tt><label id=".IFDEF"><p>
1390
1391   Conditional assembly: Check if a symbol is defined. Must be followed by
1392   a symbol name. The condition is true if the the given symbol is already
1393   defined, and false otherwise.
1394
1395   See also: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
1396
1397
1398 <sect1><tt>.IFNBLANK</tt><label id=".IFNBLANK"><p>
1399
1400   Conditional assembly: Check if there are any remaining tokens in this line,
1401   and evaluate to TRUE if this is the case, and to FALSE otherwise. If the
1402   condition is not true, further lines are not assembled until an <tt><ref
1403   id=".ELSE" name=".ELSE"></tt>, <tt><ref id=".ELSEIF" name=".ELSEIF"></tt> or
1404   <tt><ref id=".ENDIF" name=".ENDIF"></tt> directive.
1405
1406   This command is often used to check if a macro parameter was given.
1407   Since an empty macro parameter will evaluate to nothing, the condition
1408   will evaluate to FALSE if an empty parameter was given.
1409
1410   Example:
1411
1412   <tscreen><verb>
1413         .macro     arg1, arg2
1414                    lda     #arg1
1415         .ifnblank  arg2
1416                    lda     #arg2
1417         .endif
1418         .endmacro
1419   </verb></tscreen>
1420
1421   See also: <tt><ref id=".BLANK" name=".BLANK"></tt>
1422
1423
1424 <sect1><tt>.IFNDEF</tt><label id=".IFNDEF"><p>
1425
1426   Conditional assembly: Check if a symbol is defined. Must be followed by
1427   a symbol name. The condition is true if the the given symbol is not
1428   defined, and false otherwise.
1429
1430   See also: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
1431
1432
1433 <sect1><tt>.IFNREF</tt><label id=".IFNREF"><p>
1434
1435   Conditional assembly: Check if a symbol is referenced. Must be followed
1436   by a symbol name. The condition is true if if the the given symbol was
1437   not referenced before, and false otherwise.
1438
1439   See also: <tt><ref id=".REFERENCED" name=".REFERENCED"></tt>
1440
1441
1442 <sect1><tt>.IFP02</tt><label id=".IFP02"><p>
1443
1444   Conditional assembly: Check if the assembler is currently in 6502 mode
1445   (see <tt><ref id=".P02" name=".P02"></tt> command).
1446
1447
1448 <sect1><tt>.IFP816</tt><label id=".IFP816"><p>
1449
1450   Conditional assembly: Check if the assembler is currently in 65816 mode
1451   (see <tt><ref id=".P816" name=".P816"></tt> command).
1452
1453
1454 <sect1><tt>.IFPC02</tt><label id=".IFPC02"><p>
1455
1456   Conditional assembly: Check if the assembler is currently in 65C02 mode
1457   (see <tt><ref id=".PC02" name=".PC02"></tt> command).
1458
1459
1460 <sect1><tt>.IFREF</tt><label id=".IFREF"><p>
1461
1462   Conditional assembly: Check if a symbol is referenced. Must be followed
1463   by a symbol name. The condition is true if if the the given symbol was
1464   referenced before, and false otherwise.
1465
1466   This command may be used to build subroutine libraries in include files
1467   (you may use separate object modules for this purpose too).
1468
1469   Example:
1470
1471   <tscreen><verb>
1472         .ifref  ToHex                   ; If someone used this subroutine
1473         ToHex:  tay                     ; Define subroutine
1474                 lda     HexTab,y
1475                 rts
1476         .endif
1477   </verb></tscreen>
1478
1479   See also: <tt><ref id=".REFERENCED" name=".REFERENCED"></tt>
1480
1481
1482 <sect1><tt>.IMPORT</tt><label id=".IMPORT"><p>
1483
1484   Import a symbol from another module. The command is followed by a comma
1485   separated list of symbols to import.
1486
1487   Example:
1488
1489   <tscreen><verb>
1490         .import foo, bar
1491   </verb></tscreen>
1492
1493   See: <tt><ref id=".IMPORTZP" name=".IMPORTZP"></tt>
1494
1495
1496 <sect1><tt>.IMPORTZP</tt><label id=".IMPORTZP"><p>
1497
1498   Import a symbol from another module. The command is followed by a comma
1499   separated list of symbols to import. The symbols are explicitly imported
1500   as zero page symbols (that is, symbols with values in byte range).
1501
1502   Example:
1503
1504   <tscreen><verb>
1505         .importzp       foo, bar
1506   </verb></tscreen>
1507
1508   See: <tt><ref id=".IMPORT" name=".IMPORT"></tt>
1509
1510
1511 <sect1><tt>.INCBIN</tt><label id=".INCBIN"><p>
1512
1513   Include a file as binary data. The command expects a string argument
1514   that is the name of a file to include literally in the current segment.
1515   In addition to that, a start offset and a size value may be specified,
1516   separated by commas. If no size is specified, all of the file from the
1517   start offset to end-of-file is used. If no start position is specified
1518   either, zero is assume (which means that the whole file is inserted).
1519
1520   Example:
1521
1522   <tscreen><verb>
1523         ; Include whole file
1524         .incbin         "sprites.dat"
1525
1526         ; Include file starting at offset 256
1527         .incbin         "music.dat", $100
1528
1529         ; Read 100 bytes starting at offset 200
1530         .incbin         "graphics.dat", 200, 100
1531   </verb></tscreen>
1532
1533
1534 <sect1><tt>.INCLUDE</tt><label id=".INCLUDE"><p>
1535
1536   Include another file. Include files may be nested up to a depth of 16.
1537
1538   Example:
1539
1540   <tscreen><verb>
1541         .include        "subs.inc"
1542   </verb></tscreen>
1543
1544
1545 <sect1><tt>.LEFT</tt><label id=".LEFT"><p>
1546
1547   Builtin function. Extracts the left part of a given token list.
1548
1549   Syntax:
1550
1551   <tscreen><verb>
1552         .LEFT (&lt;int expr&gt;, &lt;token list&gt;)
1553   </verb></tscreen>
1554
1555   The first integer expression gives the number of tokens to extract from
1556   the token list. The second argument is the token list itself.
1557
1558   Example:
1559
1560   To check in a macro if the given argument has a '#' as first token
1561   (immidiate addressing mode), use something like this:
1562
1563   <tscreen><verb>
1564         .macro  ldax    arg
1565                 ...
1566                 .if (.match (.left (1, arg), #))
1567
1568                 ; ldax called with immidiate operand
1569                 ...
1570
1571                 .endif
1572                 ...
1573         .endmacro
1574   </verb></tscreen>
1575
1576   See also the <tt><ref id=".MID" name=".MID"></tt> and <tt><ref id=".RIGHT"
1577   name=".RIGHT"></tt> builtin functions.
1578
1579
1580 <sect1><tt>.LINECONT</tt><label id=".LINECONT"><p>
1581
1582   Switch on or off line continuations using the backslash character
1583   before a newline. The option is off by default.
1584   Note: Line continuations do not work in a comment. A backslash at the
1585   end of a comment is treated as part of the comment and does not trigger
1586   line continuation.
1587   The command must be followed by a '+' or '-' character to switch the
1588   option on or off respectively.
1589
1590   Example:
1591
1592   <tscreen><verb>
1593         .linecont       +               ; Allow line continuations
1594
1595         lda     \
1596                 #$20                    ; This is legal now
1597   </verb></tscreen>
1598
1599
1600 <sect1><tt>.LIST</tt><label id=".LIST"><p>
1601
1602   Enable output to the listing. The command must be followed by a boolean
1603   switch ("on", "off", "+" or "-") and will enable or disable listing
1604   output.
1605   The option has no effect if the listing is not enabled by the command line
1606   switch -l. If -l is used, an internal counter is set to 1. Lines are output
1607   to the listing file, if the counter is greater than zero, and suppressed if
1608   the counter is zero. Each use of <tt/.LIST/ will increment or decrement the
1609   counter.
1610
1611   Example:
1612
1613   <tscreen><verb>
1614         .list   on              ; Enable listing output
1615   </verb></tscreen>
1616
1617
1618 <sect1><tt>.LISTBYTES</tt><label id=".LISTBYTES"><p>
1619
1620   Set, how many bytes are shown in the listing for one source line. The
1621   default is 12, so the listing will show only the first 12 bytes for any
1622   source line that generates more than 12 bytes of code or data.
1623   The directive needs an argument, which is either "unlimited", or an
1624   integer constant in the range 4..255.
1625
1626   Examples:
1627
1628   <tscreen><verb>
1629         .listbytes      unlimited       ; List all bytes
1630         .listbytes      12              ; List the first 12 bytes
1631         .incbin         "data.bin"      ; Include large binary file
1632   </verb></tscreen>
1633
1634
1635 <sect1><tt>.LOCAL</tt><label id=".LOCAL"><p>
1636
1637   This command may only be used inside a macro definition. It declares a
1638   list of identifiers as local to the macro expansion.
1639
1640   A problem when using macros are labels: Since they don't change their name,
1641   you get a "duplicate symbol" error if the macro is expanded the second time.
1642   Labels declared with <tt><ref id=".LOCAL" name=".LOCAL"></tt> have their
1643   name mapped to an internal unique name (<tt/___ABCD__/) with each macro
1644   invocation.
1645
1646   Some other assemblers start a new lexical block inside a macro expansion.
1647   This has some drawbacks however, since that will not allow <em/any/ symbol
1648   to be visible outside a macro, a feature that is sometimes useful. The
1649   <tt><ref id=".LOCAL" name=".LOCAL"></tt> command is in my eyes a better way
1650   to address the problem.
1651
1652   You get an error when using <tt><ref id=".LOCAL" name=".LOCAL"></tt> outside
1653   a macro.
1654
1655
1656 <sect1><tt>.LOCALCHAR</tt><label id=".LOCALCHAR"><p>
1657
1658   Defines the character that start "cheap" local labels. You may use one
1659   of '@' and '?' as start character. The default is '@'.
1660
1661   Cheap local labels are labels that are visible only between two non
1662   cheap labels. This way you can reuse identifiers like "<tt/loop/" without
1663   using explicit lexical nesting.
1664
1665   Example:
1666
1667   <tscreen><verb>
1668         .localchar      '?'
1669
1670         Clear:  lda     #$00            ; Global label
1671         ?Loop:  sta     Mem,y           ; Local label
1672                 dey
1673                 bne     ?Loop           ; Ok
1674                 rts
1675         Sub:    ...                     ; New global label
1676                 bne     ?Loop           ; ERROR: Unknown identifier!
1677   </verb></tscreen>
1678
1679
1680 <sect1><tt>.MACPACK</tt><label id=".MACPACK"><p>
1681
1682   Insert a predefined macro package. The command is followed by an
1683   identifier specifying the macro package to insert. Available macro
1684   packages are:
1685
1686   <tscreen><verb>
1687         generic         Defines generic macros like add and sub.
1688         longbranch      Defines conditional long jump macros.
1689   </verb></tscreen>
1690
1691   Including a macro package twice, or including a macro package that
1692   redefines already existing macros will lead to an error.
1693
1694   Example:
1695
1696   <tscreen><verb>
1697         .macpack        longbranch      ; Include macro package
1698
1699                 cmp     #$20            ; Set condition codes
1700                 jne     Label           ; Jump long on condition
1701   </verb></tscreen>
1702
1703   Macro packages are explained in more detail in section <ref
1704   id="macropackages" name="Macro packages">.
1705
1706
1707 <sect1><tt>.MAC, .MACRO</tt><label id=".MAC"><p>
1708
1709   Start a classic macro definition. The command is followed by an identifier
1710   (the macro name) and optionally by a comma separated list of identifiers
1711   that are macro parameters.
1712
1713   See section <ref id="macros" name="Macros">.
1714
1715
1716 <sect1><tt>.MATCH</tt><label id=".MATCH"><p>
1717
1718   Builtin function. Matches two token lists against each other. This is
1719   most useful within macros, since macros are not stored as strings, but
1720   as lists of tokens.
1721
1722   The syntax is
1723
1724   <tscreen><verb>
1725         .MATCH(&lt;token list #1&gt;, &lt;token list #2&gt;)
1726   </verb></tscreen>
1727
1728   Both token list may contain arbitrary tokens with the exception of the
1729   terminator token (comma resp. right parenthesis) and
1730
1731   <itemize>
1732   <item>end-of-line
1733   <item>end-of-file
1734   </itemize>
1735
1736   Often a macro parameter is used for any of the token lists.
1737
1738   Please note that the function does only compare tokens, not token
1739   attributes. So any number is equal to any other number, regardless of the
1740   actual value. The same is true for strings. If you need to compare tokens
1741   <em/and/ token attributes, use the <tt><ref id=".XMATCH"
1742   name=".XMATCH"></tt> function.
1743
1744   Example:
1745
1746   Assume the macro <tt/ASR/, that will shift right the accumulator by one,
1747   while honoring the sign bit. The builtin processor instructions will allow
1748   an optional "A" for accu addressing for instructions like <tt/ROL/ and
1749   <tt/ROR/. We will use the <tt><ref id=".MATCH" name=".MATCH"></tt> function
1750   to check for this and print and error for invalid calls.
1751
1752   <tscreen><verb>
1753         .macro  asr     arg
1754
1755                 .if (.not .blank(arg)) .and (.not .match (arg, a))
1756                 .error "Syntax error"
1757                 .endif
1758
1759                 cmp     #$80            ; Bit 7 into carry
1760                 lsr     a               ; Shift carry into bit 7
1761
1762         .endmacro
1763   </verb></tscreen>
1764
1765   The macro will only accept no arguments, or one argument that must be the
1766   reserved keyword "A".
1767
1768   See: <tt><ref id=".XMATCH" name=".XMATCH"></tt>
1769
1770
1771 <sect1><tt>.MID</tt><label id=".MID"><p>
1772
1773   Builtin function. Takes a starting index, a count and a token list as
1774   arguments. Will return part of the token list.
1775
1776   Syntax:
1777
1778   <tscreen><verb>
1779         .MID (&lt;int expr&gt;, &lt;int expr&gt;, &lt;token list&gt;)
1780   </verb></tscreen>
1781
1782   The first integer expression gives the starting token in the list (the
1783   first token has index 0). The second integer expression gives the number
1784   of tokens to extract from the token list. The third argument is the
1785   token list itself.
1786
1787   Example:
1788
1789   To check in a macro if the given argument has a '<tt/#/' as first token
1790   (immidiate addressing mode), use something like this:
1791
1792     <tscreen><verb>
1793         .macro  ldax    arg
1794                 ...
1795                 .if (.match (.mid (0, 1, arg), #))
1796
1797                 ; ldax called with immidiate operand
1798                 ...
1799
1800                 .endif
1801                 ...
1802         .endmacro
1803   </verb></tscreen>
1804
1805   See also the <tt><ref id=".LEFT" name=".LEFT"></tt> and <tt><ref id=".RIGHT"
1806   name=".RIGHT"></tt> builtin functions.
1807
1808
1809 <sect1><tt>.ORG</tt><label id=".ORG"><p>
1810
1811   Start a section of absolute code. The command is followed by a constant
1812   expression that gives the new PC counter location for which the code is
1813   assembled. Use <tt><ref id=".RELOC" name=".RELOC"></tt> to switch back to
1814   relocatable code.
1815
1816   Please note that you <em/do not need/ this command in most cases. Placing
1817   code at a specific address is the job of the linker, not the assembler, so
1818   there is usually no reason to assemble code to a specific address.
1819
1820   You may not switch segments while inside a section of absolute code.
1821
1822   Example:
1823
1824   <tscreen><verb>
1825         .org    $7FF            ; Emit code starting at $7FF
1826   </verb></tscreen>
1827
1828
1829 <sect1><tt>.OUT</tt><label id=".OUT"><p>
1830
1831   Output a string to the console without producing an error. This command
1832   is similiar to <tt/.ERROR/, however, it does not force an assembler error
1833   that prevents the creation of an object file.
1834
1835   Example:
1836
1837   <tscreen><verb>
1838         .out    "This code was written by the codebuster(tm)"
1839   </verb></tscreen>
1840
1841   See also the <tt><ref id=".WARNING" name=".WARNING"></tt> and <tt><ref
1842   id=".ERROR" name=".ERROR"></tt> directives.
1843
1844
1845 <sect1><tt>.P02</tt><label id=".P02"><p>
1846
1847   Enable the 6502 instruction set, disable 65C02 and 65816 instructions.
1848   This is the default if not overridden by the <tt/--cpu/ command line
1849   option.
1850
1851   See: <tt><ref id=".PC02" name=".PC02"></tt> and <tt><ref id=".P816"
1852   name=".P816"></tt>
1853
1854
1855 <sect1><tt>.P816</tt><label id=".P816"><p>
1856
1857   Enable the 65816 instruction set. This is a superset of the 65C02 and
1858   6502 instruction sets.
1859
1860   See: <tt><ref id=".P02" name=".P02"></tt> and <tt><ref id=".PC02"
1861   name=".PC02"></tt>
1862
1863
1864 <sect1><tt>.PAGELEN, .PAGELENGTH</tt><label id=".PAGELENGTH"><p>
1865
1866   Set the page length for the listing. Must be followed by an integer
1867   constant. The value may be "unlimited", or in the range 32 to 127. The
1868   statement has no effect if no listing is generated. The default value is -1
1869   (unlimited) but may be overridden by the <tt/--pagelength/ command line
1870   option. Beware: Since ca65 is a one pass assembler, the listing is generated
1871   after assembly is complete, you cannot use multiple line lengths with one
1872   source. Instead, the value set with the last <tt/.PAGELENGTH/ is used.
1873
1874   Examples:
1875
1876   <tscreen><verb>
1877         .pagelength     66              ; Use 66 lines per listing page
1878
1879         .pagelength     unlimited       ; Unlimited page length
1880   </verb></tscreen>
1881
1882
1883 <sect1><tt>.PARAMCOUNT</tt><label id=".PARAMCOUNT"><p>
1884
1885   This builtin pseudo variable is only available in macros. It is replaced by
1886   the actual number of parameters that were given in the macro invocation.
1887
1888   Example:
1889
1890   <tscreen><verb>
1891         .macro  foo     arg1, arg2, arg3
1892         .if     .paramcount <> 3
1893         .error  "Too few parameters for macro foo"
1894         .endif
1895         ...
1896         .endmacro
1897   </verb></tscreen>
1898
1899   See section <ref id="macros" name="Macros">.
1900
1901
1902 <sect1><tt>.PC02</tt><label id=".PC02"><p>
1903
1904   Enable the 65C02 instructions set. This instruction set includes all
1905   6502 instructions.
1906
1907   See: <tt><ref id=".P02" name=".P02"></tt> and <tt><ref id=".P816"
1908   name=".P816"></tt>
1909
1910
1911 <sect1><tt>.POPSEG</tt><label id=".POPSEG"><p>
1912
1913   Pop the last pushed segment from the stack, and set it.
1914
1915   This command will switch back to the segment that was last pushed onto the
1916   segment stack using the <tt><ref id=".PUSHSEG" name=".PUSHSEG"></tt>
1917   command, and remove this entry from the stack.
1918
1919   The assembler will print an error message if the segment stack is empty
1920   when this command is issued.
1921
1922   See: <tt><ref id=".PUSHSEG" name=".PUSHSEG"></tt>
1923
1924
1925 <sect1><tt>.PROC</tt><label id=".PROC"><p>
1926
1927   Start a nested lexical level. All new symbols from now on are in the local
1928   lexical level and are not accessible from outside. Symbols defined outside
1929   this local level may be accessed as long as their names are not used for new
1930   symbols inside the level. Symbols names in other lexical levels do not
1931   clash, so you may use the same names for identifiers. The lexical level ends
1932   when the <tt><ref id=".ENDPROC" name=".ENDPROC"></tt> command is read.
1933   Lexical levels may be nested up to a depth of 16.
1934
1935   The command may be followed by an identifier, in this case the
1936   identifier is declared in the outer level as a label having the value of
1937   the program counter at the start of the lexical level.
1938
1939   Note: Macro names are always in the global level and in a separate name
1940   space. There is no special reason for this, it's just that I've never
1941   had any need for local macro definitions.
1942
1943   Example:
1944
1945   <tscreen><verb>
1946         .proc   Clear           ; Define Clear subroutine, start new level
1947                 lda     #$00
1948         L1:     sta     Mem,y   ; L1 is local and does not cause a
1949                                 ; duplicate symbol error if used in other
1950                                 ; places
1951                 dey
1952                 bne     L1      ; Reference local symbol
1953                 rts
1954         .endproc                ; Leave lexical level
1955   </verb></tscreen>
1956
1957   See: <tt><ref id=".ENDPROC" name=".ENDPROC"></tt>
1958
1959
1960 <sect1><tt>.PUSHSEG</tt><label id=".PUSHSEG"><p>
1961
1962   Push the currently active segment onto a stack. The entries on the stack
1963   include the name of the segment and the segment type. The stack has a size
1964   of 16 entries.
1965
1966   <tt/.PUSHSEG/ allows together with <tt><ref id=".POPSEG" name=".POPSEG"></tt>
1967   to switch to another segment and to restore the old segment later, without
1968   even knowing the name and type of the current segment.
1969
1970   The assembler will print an error message if the segment stack is already
1971   full, when this command is issued.
1972
1973   See: <tt><ref id=".POPSEG" name=".POPSEG"></tt>
1974
1975
1976 <sect1><tt>.REF, .REFERENCED</tt><label id=".REFERENCED"><p>
1977
1978   Builtin function. The function expects an identifier as argument in braces.
1979   The argument is evaluated, and the function yields "true" if the identifier
1980   is a symbol that has already been referenced somewhere in the source file up
1981   to the current position. Otherwise the function yields false. As an example,
1982   the <tt><ref id=".IFREF" name=".IFREF"></tt> statement may be replaced by
1983
1984   <tscreen><verb>
1985         .if     .referenced(a)
1986   </verb></tscreen>
1987
1988   See: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
1989
1990
1991 <sect1><tt>.REPEAT</tt><label id=".REPEAT"><p>
1992
1993   Repeat all commands between <tt/.REPEAT/ and <tt><ref id=".ENDREPEAT"
1994   name=".ENDREPEAT"></tt> constant number of times. The command is followed by
1995   a constant expression that tells how many times the commands in the body
1996   should get repeated. Optionally, a comma and an identifier may be specified.
1997   If this identifier is found in the body of the repeat statement, it is
1998   replaced by the current repeat count (starting with zero for the first time
1999   the body is repeated).
2000
2001   <tt/.REPEAT/ statements may be nested. If you use the same repeat count
2002   identifier for a nested <tt/.REPEAT/ statement, the one from the inner
2003   level will be used, not the one from the outer level.
2004
2005   Example:
2006
2007   The following macro will emit a string that is "encrypted" in that all
2008   characters of the string are XORed by the value $55.
2009
2010   <tscreen><verb>
2011         .macro  Crypt   Arg
2012                 .repeat .strlen(Arg), I
2013                 .byte   .strat(Arg, I) .xor $55
2014                 .endrep
2015         .endmacro
2016   </verb></tscreen>
2017
2018   See: <tt><ref id=".ENDREPEAT" name=".ENDREPEAT"></tt>
2019
2020
2021 <sect1><tt>.RELOC</tt><label id=".RELOC"><p>
2022
2023   Switch back to relocatable mode. See the <tt><ref id=".ORG"
2024   name=".ORG"></tt> command.
2025
2026
2027 <sect1><tt>.RES</tt><label id=".RES"><p>
2028
2029   Reserve storage. The command is followed by one or two constant
2030   expressions. The first one is mandatory and defines, how many bytes of
2031   storage should be defined. The second, optional expression must by a
2032   constant byte value that will be used as value of the data. If there
2033   is no fill value given, the linker will use the value defined in the
2034   linker configuration file (default: zero).
2035
2036   Example:
2037
2038   <tscreen><verb>
2039         ; Reserve 12 bytes of memory with value $AA
2040         .res    12, $AA
2041   </verb></tscreen>
2042
2043
2044 <sect1><tt>.RIGHT</tt><label id=".RIGHT"><p>
2045
2046   Builtin function. Extracts the right part of a given token list.
2047
2048   Syntax:
2049
2050   <tscreen><verb>
2051         .RIGHT (&lt;int expr&gt;, &lt;token list&gt;)
2052   </verb></tscreen>
2053
2054   The first integer expression gives the number of tokens to extract from
2055   the token list. The second argument is the token list itself.
2056
2057   See also the <tt><ref id=".LEFT" name=".LEFT"></tt> and <tt><ref id=".MID"
2058   name=".MID"></tt> builtin functions.
2059
2060
2061 <sect1><tt>.RODATA</tt><label id=".RODATA"><p>
2062
2063   Switch to the RODATA segment. The name of the RODATA segment is always
2064   "RODATA", so this is a shortcut for
2065
2066   <tscreen><verb>
2067         .segment  "RODATA"
2068   </verb></tscreen>
2069
2070   The RODATA segment is a segment that is used by the compiler for
2071   readonly data like string constants.
2072
2073   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
2074
2075
2076 <sect1><tt>.SEGMENT</tt><label id=".SEGMENT"><p>
2077
2078   Switch to another segment. Code and data is always emitted into a
2079   segment, that is, a named section of data. The default segment is
2080   "CODE". There may be up to 254 different segments per object file
2081   (and up to 65534 per executable). There are shortcut commands for
2082   the most common segments ("CODE", "DATA" and "BSS").
2083
2084   The command is followed by a string containing the segment name (there
2085   are some constraints for the name - as a rule of thumb use only those
2086   segment names that would also be valid identifiers). There may also be
2087   an optional attribute separated by a comma. Valid attributes are
2088   "<tt/zeropage/" and "<tt/absolute/".
2089
2090   When specifying a segment for the first time, "absolute" is the
2091   default. For all other uses, the attribute specified the first time
2092   is the default.
2093
2094   "absolute" means that this is a segment with absolute addressing. That
2095   is, the segment will reside somewhere in core memory outside the zero
2096   page. "zeropage" means the opposite: The segment will be placed in the
2097   zero page and direct (short) addressing is possible for data in this
2098   segment.
2099
2100   Beware: Only labels in a segment with the zeropage attribute are marked
2101   as reachable by short addressing. The `*' (PC counter) operator will
2102   work as in other segments and will create absolute variable values.
2103
2104   Example:
2105
2106   <tscreen><verb>
2107         .segment "ROM2"                 ; Switch to ROM2 segment
2108         .segment "ZP2", zeropage        ; New direct segment
2109         .segment "ZP2"                  ; Ok, will use last attribute
2110         .segment "ZP2", absolute        ; Error, redecl mismatch
2111   </verb></tscreen>
2112
2113   See: <tt><ref id=".BSS" name=".BSS"></tt>, <tt><ref id=".CODE"
2114   name=".CODE"></tt>, <tt><ref id=".DATA" name=".DATA"></tt> and <tt><ref
2115   id=".RODATA" name=".RODATA"></tt>
2116
2117
2118 <sect1><tt>.SMART</tt><label id=".SMART"><p>
2119
2120   Switch on or off smart mode. The command must be followed by a '+' or
2121   '-' character to switch the option on or off respectively. The default
2122   is off (that is, the assembler doesn't try to be smart), but this
2123   default may be changed by the -s switch on the command line.
2124
2125   In smart mode the assembler will track usage of the <tt/REP/ and <tt/SEP/
2126   instructions in 65816 mode and update the operand sizes accordingly. If
2127   the operand of such an instruction cannot be evaluated by the assembler
2128   (for example, because the operand is an imported symbol), a warning is
2129   issued. Beware: Since the assembler cannot trace the execution flow this
2130   may lead to false results in some cases. If in doubt, use the <tt/.Inn/ and
2131   <tt/.Ann/ instructions to tell the assembler about the current settings.
2132
2133   Example:
2134
2135   <tscreen><verb>
2136         .smart                          ; Be smart
2137         .smart  -                       ; Stop being smart
2138   </verb></tscreen>
2139
2140
2141 <sect1><tt>.STRAT</tt><label id=".STRAT"><p>
2142
2143   Builtin function. The function accepts a string and an index as
2144   arguments and returns the value of the character at the given position
2145   as an integer value. The index is zero based.
2146
2147   Example:
2148
2149   <tscreen><verb>
2150         .macro  M       Arg
2151                 ; Check if the argument string starts with '#'
2152                 .if (.strat (Arg, 0) = '#')
2153                 ...
2154                 .endif
2155         .endmacro
2156   </verb></tscreen>
2157
2158
2159 <sect1><tt>.STRING</tt><label id=".STRING"><p>
2160
2161   Builtin function. The function accepts an argument in braces and converts
2162   this argument into a string constant. The argument may be an identifier, or
2163   a constant numeric value.
2164
2165   Since you can use a string in the first place, the use of the function may
2166   not be obvious. However, it is useful in macros, or more complex setups.
2167
2168   Example:
2169
2170   <tscreen><verb>
2171         ; Emulate other assemblers:
2172         .macro  section name
2173                 .segment        .string(name)
2174         .endmacro
2175   </verb></tscreen>
2176
2177
2178 <sect1><tt>.STRLEN</tt><label id=".STRLEN"><p>
2179
2180   Builtin function. The function accepts a string argument in braces and
2181   eveluates to the length of the string.
2182
2183   Example:
2184
2185   The following macro encodes a string as a pascal style string with
2186   a leading length byte.
2187
2188   <tscreen><verb>
2189         .macro  PString Arg
2190                 .byte   .strlen(Arg), Arg
2191         .endmacro
2192   </verb></tscreen>
2193
2194
2195 <sect1><tt>.TCOUNT</tt><label id=".TCOUNT"><p>
2196
2197   Builtin function. The function accepts a token list in braces. The
2198   function result is the number of tokens given as argument.
2199
2200   Example:
2201
2202   The <tt/ldax/ macro accepts the '#' token to denote immidiate addressing (as
2203   with the normal 6502 instructions). To translate it into two separate 8 bit
2204   load instructions, the '#' token has to get stripped from the argument:
2205
2206   <tscreen><verb>
2207         .macro  ldax    arg
2208                 .if (.match (.mid (0, 1, arg), #))
2209                 ; ldax called with immidiate operand
2210                 lda     #<(.right (.tcount (arg)-1, arg))
2211                 ldx     #>(.right (.tcount (arg)-1, arg))
2212                 .else
2213                 ...
2214                 .endif
2215         .endmacro
2216   </verb></tscreen>
2217
2218
2219 <sect1><tt>.TIME</tt><label id=".TIME"><p>
2220
2221   Reading this pseudo variable will give a constant integer value that
2222   represents the current time in POSIX standard (as seconds since the
2223   Epoch).
2224
2225   It may be used to encode the time of translation somewhere in the created
2226   code.
2227
2228   Example:
2229
2230   <tscreen><verb>
2231         .dword  .time   ; Place time here
2232   </verb></tscreen>
2233
2234
2235 <sect1><tt>.WARNING</tt><label id=".WARNING"><p>
2236
2237   Force an assembly warning. The assembler will output a warning message
2238   preceeded by "User warning". This warning will always be output, even if
2239   other warnings are disabled with the <tt><ref id="option-W" name="-W0"></tt>
2240   command line option.
2241
2242   This command may be used to output possible problems when assembling
2243   the source file.
2244
2245   Example:
2246
2247   <tscreen><verb>
2248         .macro  jne     target
2249                 .local L1
2250                 .ifndef target
2251                 .warning "Forward jump in jne, cannot optimize!"
2252                 beq     L1
2253                 jmp     target
2254         L1:
2255                 .else
2256                 ...
2257                 .endif
2258         .endmacro
2259   </verb></tscreen>
2260
2261   See also the <tt><ref id=".ERROR" name=".ERROR"></tt> and <tt><ref id=".OUT"
2262   name=".OUT"></tt> directives.
2263
2264
2265 <sect1><tt>.WORD</tt><label id=".WORD"><p>
2266
2267   Define word sized data. Must be followed by a sequence of (word ranged,
2268   but not necessarily constant) expressions.
2269
2270   Example:
2271
2272   <tscreen><verb>
2273         .word   $0D00, $AF13, _Clear
2274   </verb></tscreen>
2275
2276
2277 <sect1><tt>.XMATCH</tt><label id=".XMATCH"><p>
2278
2279   Builtin function. Matches two token lists against each other. This is
2280   most useful within macros, since macros are not stored as strings, but
2281   as lists of tokens.
2282
2283   The syntax is
2284
2285   <tscreen><verb>
2286         .XMATCH(&lt;token list #1&gt;, &lt;token list #2&gt;)
2287   </verb></tscreen>
2288
2289   Both token list may contain arbitrary tokens with the exception of the
2290   terminator token (comma resp. right parenthesis) and
2291
2292   <itemize>
2293   <item>end-of-line
2294   <item>end-of-file
2295   </itemize>
2296
2297   Often a macro parameter is used for any of the token lists.
2298
2299   The function compares tokens <em/and/ token values. If you need a function
2300   that just compares the type of tokens, have a look at the <tt><ref
2301   id=".MATCH" name=".MATCH"></tt> function.
2302
2303   See: <tt><ref id=".MATCH" name=".MATCH"></tt>
2304
2305
2306 <sect1><tt>.ZEROPAGE</tt><label id=".ZEROPAGE"><p>
2307
2308   Switch to the ZEROPAGE segment and mark it as direct (zeropage) segment.
2309   The name of the ZEROPAGE segment is always "ZEROPAGE", so this is a
2310   shortcut for
2311
2312   <tscreen><verb>
2313         .segment  "ZEROPAGE", zeropage
2314   </verb></tscreen>
2315
2316   Because of the "zeropage" attribute, labels declared in this segment are
2317   addressed using direct addressing mode if possible. You <em/must/ instruct
2318   the linker to place this segment somewhere in the address range 0..$FF
2319   otherwise you will get errors.
2320
2321   See: <tt><ref id=".SEGMENT" name=".SEGMENT"></tt>
2322
2323
2324
2325 <sect>Macros<label id="macros"><p>
2326
2327
2328 <sect1>Introduction<p>
2329
2330 Macros may be thought of as "parametrized super instructions". Macros are
2331 sequences of tokens that have a name. If that name is used in the source
2332 file, the macro is "expanded", that is, it is replaced by the tokens that
2333 were specified when the macro was defined.
2334
2335
2336 <sect1>Macros without parameters<p>
2337
2338 In it's simplest form, a macro does not have parameters. Here's an
2339 example:
2340
2341 <tscreen><verb>
2342         .macro  asr             ; Arithmetic shift right
2343                 cmp     #$80    ; Put bit 7 into carry
2344                 ror             ; Rotate right with carry
2345         .endmacro
2346 </verb></tscreen>
2347
2348 The macro above consists of two real instructions, that are inserted into
2349 the code, whenever the macro is expanded. Macro expansion is simply done
2350 by using the name, like this:
2351
2352 <tscreen><verb>
2353         lda     $2010
2354         asr
2355         sta     $2010
2356 </verb></tscreen>
2357
2358
2359 <sect1>Parametrized macros<p>
2360
2361 When using macro parameters, macros can be even more useful:
2362
2363 <tscreen><verb>
2364         .macro  inc16   addr
2365                 clc
2366                 lda     addr
2367                 adc     #$01
2368                 sta     addr
2369                 lda     addr+1
2370                 adc     #$00
2371                 sta     addr+1
2372         .endmacro
2373 </verb></tscreen>
2374
2375 When calling the macro, you may give a parameter, and each occurence of
2376 the name "addr" in the macro definition will be replaced by the given
2377 parameter. So
2378
2379 <tscreen><verb>
2380         inc16   $1000
2381 </verb></tscreen>
2382
2383 will be expanded to
2384
2385 <tscreen><verb>
2386                 clc
2387                 lda     $1000
2388                 adc     #$01
2389                 sta     $1000
2390                 lda     $1000+1
2391                 adc     #$00
2392                 sta     $1000+1
2393 </verb></tscreen>
2394
2395 A macro may have more than one parameter, in this case, the parameters
2396 are separated by commas. You are free to give less parameters than the
2397 macro actually takes in the definition. You may also leave intermediate
2398 parameters empty. Empty parameters are replaced by empty space (that is,
2399 they are removed when the macro is exanded). If you have a look at our
2400 macro definition above, you will see, that replacing the "addr" parameter
2401 by nothing will lead to wrong code in most lines. To help you, writing
2402 macros with a variable parameter list, there are some control commands:
2403
2404 <tt><ref id=".IFBLANK" name=".IFBLANK"></tt> tests the rest of the line and
2405 returns true, if there are any tokens on the remainder of the line. Since
2406 empty parameters are replaced by nothing, this may be used to test if a given
2407 parameter is empty. <tt><ref id=".IFNBLANK" name=".IFNBLANK"></tt> tests the
2408 opposite.
2409
2410 Look at this example:
2411
2412 <tscreen><verb>
2413         .macro  ldaxy   a, x, y
2414         .ifnblank       a
2415                 lda     #a
2416         .endif
2417         .ifnblank       x
2418                 ldx     #x
2419         .endif
2420         .ifnblank       y
2421                 ldy     #y
2422         .endif
2423         .endmacro
2424 </verb></tscreen>
2425
2426 This macro may be called as follows:
2427
2428 <tscreen><verb>
2429         ldaxy   1, 2, 3         ; Load all three registers
2430
2431         ldaxy   1, , 3          ; Load only a and y
2432
2433         ldaxy   , , 3           ; Load y only
2434 </verb></tscreen>
2435
2436 There's another helper command for determining, which macro parameters are
2437 valid: <tt><ref id=".PARAMCOUNT" name=".PARAMCOUNT"></tt> This command is
2438 replaced by the parameter count given, <em/including/ intermediate empty macro
2439 parameters:
2440
2441 <tscreen><verb>
2442         ldaxy   1               ; .PARAMCOUNT = 1
2443         ldaxy   1,,3            ; .PARAMCOUNT = 3
2444         ldaxy   1,2             ; .PARAMCOUNT = 2
2445         ldaxy   1,              ; .PARAMCOUNT = 2
2446         ldaxy   1,2,3           ; .PARAMCOUNT = 3
2447 </verb></tscreen>
2448
2449
2450 <sect1>Recursive macros<p>
2451
2452 Macros may be used recursively:
2453
2454 <tscreen><verb>
2455         .macro  push    r1, r2, r3
2456                 lda     r1
2457                 pha
2458         .if     .paramcount > 1
2459                 push    r2, r3
2460         .endif
2461         .endmacro
2462 </verb></tscreen>
2463
2464 There's also a special macro to help writing recursive macros: <tt><ref
2465 id=".EXITMACRO" name=".EXITMACRO"></tt> This command will stop macro expansion
2466 immidiately:
2467
2468 <tscreen><verb>
2469         .macro  push    r1, r2, r3, r4, r5, r6, r7
2470         .ifblank        r1
2471                 ; First parameter is empty
2472                 .exitmacro
2473         .else
2474                 lda     r1
2475                 pha
2476         .endif
2477                 push    r2, r3, r4, r5, r6, r7
2478         .endmacro
2479 </verb></tscreen>
2480
2481 When expanding this macro, the expansion will push all given parameters
2482 until an empty one is encountered. The macro may be called like this:
2483
2484 <tscreen><verb>
2485         push    $20, $21, $32           ; Push 3 ZP locations
2486         push    $21                     ; Push one ZP location
2487 </verb></tscreen>
2488
2489
2490 <sect1>Local symbols inside macros<p>
2491
2492 Now, with recursive macros, <tt><ref id=".IFBLANK" name=".IFBLANK"></tt> and
2493 <tt><ref id=".PARAMCOUNT" name=".PARAMCOUNT"></tt>, what else do you need?
2494 Have a look at the inc16 macro above. Here is it again:
2495
2496 <tscreen><verb>
2497         .macro  inc16   addr
2498                 clc
2499                 lda     addr
2500                 adc     #$01
2501                 sta     addr
2502                 lda     addr+1
2503                 adc     #$00
2504                 sta     addr+1
2505         .endmacro
2506 </verb></tscreen>
2507
2508 If you have a closer look at the code, you will notice, that it could be
2509 written more efficiently, like this:
2510
2511 <tscreen><verb>
2512         .macro  inc16   addr
2513                 inc     addr
2514                 bne     Skip
2515                 inc     addr+1
2516         Skip:
2517         .endmacro
2518 </verb></tscreen>
2519
2520 But imagine what happens, if you use this macro twice? Since the label
2521 "Skip" has the same name both times, you get a "duplicate symbol" error.
2522 Without a way to circumvent this problem, macros are not as useful, as
2523 they could be. One solution is, to start a new lexical block inside the
2524 macro:
2525
2526 <tscreen><verb>
2527         .macro  inc16   addr
2528         .proc
2529                 inc     addr
2530                 bne     Skip
2531                 inc     addr+1
2532         Skip:
2533         .endproc
2534         .endmacro
2535 </verb></tscreen>
2536
2537 Now the label is local to the block and not visible outside. However,
2538 sometimes you want a label inside the macro to be visible outside. To make
2539 that possible, there's a new command that's only usable inside a macro
2540 definition: <tt><ref id=".LOCAL" name=".LOCAL"></tt>. <tt/.LOCAL/ declares one
2541 or more symbols as local to the macro expansion. The names of local variables
2542 are replaced by a unique name in each separate macro expansion. So we could
2543 also solve the problem above by using <tt/.LOCAL/:
2544
2545 <tscreen><verb>
2546         .macro  inc16   addr
2547                 .local  Skip            ; Make Skip a local symbol
2548                 clc
2549                 lda     addr
2550                 adc     #$01
2551                 sta     addr
2552                 bcc     Skip
2553                 inc     addr+1
2554         Skip:                           ; Not visible outside
2555         .endmacro
2556 </verb></tscreen>
2557
2558
2559 <sect1>C style macros<p>
2560
2561 Starting with version 2.5 of the assembler, there is a second macro type
2562 available: C style macros using the <tt/.DEFINE/ directive. These macros are
2563 similar to the classic macro type described above, but behaviour is sometimes
2564 different:
2565
2566 <itemize>
2567
2568 <item>  Macros defined with <tt><ref id=".DEFINE" name=".DEFINE"></tt> may not
2569         span more than a line. You may use line continuation (see <tt><ref
2570         id=".LINECONT" name=".LINECONT"></tt>) to spread the definition over
2571         more than one line for increased readability, but the macro itself
2572         may not contain an end-of-line token.
2573
2574 <item>  Macros defined with <tt><ref id=".DEFINE" name=".DEFINE"></tt> share
2575         the name space with classic macros, but they are detected and replaced
2576         at the scanner level. While classic macros may be used in every place,
2577         where a mnemonic or other directive is allowed, <tt><ref id=".DEFINE"
2578         name=".DEFINE"></tt> style macros are allowed anywhere in a line. So
2579         they are more versatile in some situations.
2580
2581 <item>  <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros may take
2582         parameters. While classic macros may have empty parameters, this is
2583         not true for <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros.
2584         For this macro type, the number of actual parameters must match
2585         exactly the number of formal parameters.
2586
2587         To make this possible, formal parameters are enclosed in braces when
2588         defining the macro. If there are no parameters, the empty braces may
2589         be omitted.
2590
2591 <item>  Since <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros may not
2592         contain end-of-line tokens, there are things that cannot be done. They
2593         may not contain several processor instructions for example. So, while
2594         some things may be done with both macro types, each type has special
2595         usages. The types complement each other.
2596
2597 </itemize>
2598
2599 Let's look at a few examples to make the advantages and disadvantages
2600 clear.
2601
2602 To emulate assemblers that use "<tt/EQU/" instead of "<tt/=/" you may use the
2603 following <tt/.DEFINE/:
2604
2605 <tscreen><verb>
2606         .define EQU     =
2607
2608         foo     EQU     $1234           ; This is accepted now
2609 </verb></tscreen>
2610
2611 You may use the directive to define string constants used elsewhere:
2612
2613 <tscreen><verb>
2614         ; Define the version number
2615         .define VERSION         "12.3a"
2616
2617         ; ... and use it
2618         .asciiz VERSION
2619 </verb></tscreen>
2620
2621 Macros with parameters may also be useful:
2622
2623 <tscreen><verb>
2624         .define DEBUG(message)  .out    message
2625
2626         DEBUG   "Assembling include file #3"
2627 </verb></tscreen>
2628
2629 Note that, while formal parameters have to be placed in braces, this is
2630 not true for the actual parameters. Beware: Since the assembler cannot
2631 detect the end of one parameter, only the first token is used. If you
2632 don't like that, use classic macros instead:
2633
2634 <tscreen><verb>
2635         .macro  message
2636                 .out    message
2637         .endmacro
2638 </verb></tscreen>
2639
2640 (This is an example where a problem can be solved with both macro types).
2641
2642
2643 <sect1>Characters in macros<p>
2644
2645 When using the <ref id="option-t" name="-t"> option, characters are translated
2646 into the target character set of the specific machine. However, this happens
2647 as late as possible. This means that strings are translated if they are part
2648 of a <tt><ref id=".BYTE" name=".BYTE"></tt> or <tt><ref id=".ASCIIZ"
2649 name=".ASCIIZ"></tt> command. Characters are translated as soon as they are
2650 used as part of an expression.
2651
2652 This behaviour is very intuitive outside of macros but may be confusing when
2653 doing more complex macros. If you compare characters against numeric values,
2654 be sure to take the translation into account.
2655
2656
2657
2658
2659 <sect>Macro packages<label id="macropackages"><p>
2660
2661 Using the <tt><ref id=".MACPACK" name=".MACPACK"></tt> directive, predefined
2662 macro packages may be included with just one command. Available macro packages
2663 are:
2664
2665
2666 <sect1><tt>.MACPACK generic</tt><p>
2667
2668 This macro package defines macros that are useful in almost any program.
2669 Currently, two macros are defined:
2670
2671 <tscreen><verb>
2672         .macro  add     Arg
2673                 clc
2674                 adc     Arg
2675         .endmacro
2676
2677         .macro  sub     Arg
2678                 sec
2679                 sbc     Arg
2680         .endmacro
2681 </verb></tscreen>
2682
2683
2684 <sect1><tt>.MACPACK longbranch</tt><p>
2685
2686 This macro package defines long conditional jumps. They are named like the
2687 short counterpart but with the 'b' replaced by a 'j'. Here is a sample
2688 definition for the "<tt/jeq/" macro, the other macros are built using the same
2689 scheme:
2690
2691 <tscreen><verb>
2692         .macro  jeq     Target
2693                 .if     .def(Target) .and ((*+2)-(Target) <= 127)
2694                 beq     Target
2695                 .else
2696                 bne     *+5
2697                 jmp     Target
2698                 .endif
2699         .endmacro
2700 </verb></tscreen>
2701
2702 All macros expand to a short branch, if the label is already defined (back
2703 jump) and is reachable with a short jump. Otherwise the macro expands to a
2704 conditional branch with the branch condition inverted, followed by an absolute
2705 jump to the actual branch target.
2706
2707 The package defines the following macros:
2708
2709 <tscreen><verb>
2710         jeq, jne, jmi, jpl, jcs, jcc, jvs, jvc
2711 </verb></tscreen>
2712
2713
2714
2715 <sect>Module constructors/destructors<label id="condes"><p>
2716
2717 <em>Note:</em> This section applies mostly to C programs, so the explanation
2718 below uses examples from the C libraries. However, the feature may also be
2719 useful for assembler programs.
2720
2721
2722 <sect1>Module overview<p>
2723
2724 Using the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt> and <tt><ref
2725 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> keywords it it possible to export
2726 functions in a special way. The linker is able to generate tables with all
2727 functions of a specific type. Such a table will <em>only</em> include symbols
2728 from object files that are linked into a specific executable. This may be used
2729 to add initialization and cleanup code for library modules.
2730
2731 The C heap functions are an example where module initialization code is used.
2732 All heap functions (<tt>malloc</tt>, <tt>free</tt>, ...) work with a few
2733 variables that contain the start and the end of the heap, pointers to the free
2734 list and so on. Since the end of the heap depends on the size and start of the
2735 stack, it must be initialized at runtime. However, initializing these
2736 variables for programs that do not use the heap are a waste of time and
2737 memory.
2738
2739 So the central module defines a function that contains initialization code and
2740 exports this function using the <tt/.CONSTRUCTOR/ statement. If (and only if)
2741 this module is added to an executable by the linker, the initialization
2742 function will be placed into the table of constructors by the linker. The C
2743 startup code will call all constructors before <tt/main/ and all destructors
2744 after <tt/main/, so without any further work, the heap initialization code is
2745 called once the module is linked in.
2746
2747 While it would be possible to add explicit calls to initialization functions
2748 in the startup code, the new approach has several advantages:
2749
2750 <enum>
2751 <item>
2752 If a module is not included, the initialization code is not linked in and not
2753 called. So you don't pay for things you don't need.
2754
2755 <item>
2756 Adding another library that needs initialization does not mean that the
2757 startup code has to be changed. Before we had module constructors and
2758 destructors, the startup code for all systems had to be adjusted to call the
2759 new initialization code.
2760
2761 <item>
2762 The feature saves memory: Each additional initialization function needs just
2763 two bytes in the table (a pointer to the function).
2764
2765 </enum>
2766
2767
2768 <sect1>Pitfalls<p>
2769
2770 When creating and using module constructors and destructors, please take care
2771 of the following:
2772
2773 <itemize>
2774
2775 <item>
2776 The linker will only generate function tables, it will not generate code to
2777 call these functions. If you're using the feature in some other than the
2778 existing C environments, you have to write code to call all functions in a
2779 linker generated table yourself. See the <tt>condes</tt> module in the C
2780 runtime for an example on how to do this.
2781
2782 <item>
2783 The linker will only add addresses of functions that are in modules linked to
2784 the executable. This means that you have to be careful where to place the
2785 condes functions. If initialization is needed for a group of functions, be
2786 sure to place the initialization function into a module that is linked in
2787 regardless of which function is called by the user.
2788
2789 <item>
2790 The linker will generate the tables only when requested to do so by the
2791 <tt/FEATURE CONDES/ statement in the linker config file. Each table has to
2792 be requested separately.
2793
2794 <item>
2795 Constructors and destructors may have priorities. These priorities determine
2796 the order of the functions in the table. If your intialization or cleanup code
2797 does depend on other initialization or cleanup code, you have to choose the
2798 priority for the functions accordingly.
2799
2800 <item>
2801 Besides the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt> and <tt><ref
2802 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> statements, there is also a more
2803 generic command: <tt><ref id=".CONDES" name=".CONDES"></tt>. This allows to
2804 specify an additional type. Predefined types are 0 (constructor) and 1
2805 (destructor). The linker generates a separate table for each type on request.
2806
2807 </itemize>
2808
2809
2810
2811
2812
2813 <sect>Bugs/Feedback<p>
2814
2815 If you have problems using the assembler, if you find any bugs, or if
2816 you're doing something interesting with the assembler, I would be glad to
2817 hear from you. Feel free to contact me by email
2818 (<htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">).
2819
2820
2821
2822 <sect>Copyright<p>
2823
2824 ca65 (and all cc65 binutils) are (C) Copyright 1998-2001 Ullrich von
2825 Bassewitz. For usage of the binaries and/or sources the following
2826 conditions do apply:
2827
2828 This software is provided 'as-is', without any expressed or implied
2829 warranty.  In no event will the authors be held liable for any damages
2830 arising from the use of this software.
2831
2832 Permission is granted to anyone to use this software for any purpose,
2833 including commercial applications, and to alter it and redistribute it
2834 freely, subject to the following restrictions:
2835
2836 <enum>
2837 <item>  The origin of this software must not be misrepresented; you must not
2838         claim that you wrote the original software. If you use this software
2839         in a product, an acknowledgment in the product documentation would be
2840         appreciated but is not required.
2841 <item>  Altered source versions must be plainly marked as such, and must not
2842         be misrepresented as being the original software.
2843 <item>  This notice may not be removed or altered from any source
2844         distribution.
2845 </enum>
2846
2847
2848
2849 </article>
2850
2851
2852