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