]> git.sur5r.net Git - cc65/blob - doc/ca65.sgml
New get_tv function by Stefan Haubenthal.
[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>2000-07-19, 2000-11-29, 2001-10-02, 2005-09-08
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   -mm model             Set the memory model
100   -o name               Name the output file
101   -s                    Enable smart mode
102   -t sys                Set the target system
103   -v                    Increase verbosity
104
105 Long options:
106   --auto-import         Mark unresolved symbols as import
107   --cpu type            Set cpu type
108   --debug-info          Add debug info to object file
109   --feature name        Set an emulation feature
110   --help                Help (this text)
111   --ignore-case         Ignore case of symbols
112   --include-dir dir     Set an include directory search path
113   --listing             Create a listing if assembly was ok
114   --list-bytes n        Maximum number of bytes per listing line
115   --macpack-dir dir     Set a macro package directory
116   --memory-model model  Set the memory model
117   --pagelength n        Set the page length for the listing
118   --smart               Enable smart mode
119   --target sys          Set the target system
120   --verbose             Increase verbosity
121   --version             Print the assembler version
122 ---------------------------------------------------------------------------
123 </verb></tscreen>
124
125
126 <sect1>Command line options in detail<p>
127
128 Here is a description of all the command line options:
129
130 <descrip>
131
132   <label id="option--cpu">
133   <tag><tt>--cpu type</tt></tag>
134
135   Set the default for the CPU type. The option takes a parameter, which
136   may be one of
137
138         6502, 65SC02, 65C02, 65816, sunplus, sweet16, HuC6280
139
140   The sunplus cpu is not available in the freeware version, because the
141   instruction set is "proprietary and confidential".
142
143
144   <label id="option--feature">
145   <tag><tt>--feature name</tt></tag>
146
147   Enable an emulation feature. This is identical as using <tt/.FEATURE/
148   in the source with two exceptions: Feature names must be lower case, and
149   each feature must be specified by using an extra <tt/--feature/ option,
150   comma separated lists are not allowed.
151
152   See the discussion of the <tt><ref id=".FEATURE" name=".FEATURE"></tt>
153   command for a list of emulation features.
154
155
156   <label id="option-g">
157   <tag><tt>-g, --debug-info</tt></tag>
158
159   When this option (or the equivalent control command <tt/.DEBUGINFO/) is
160   used, the assembler will add a section to the object file that contains
161   all symbols (including local ones) together with the symbol values and
162   source file positions. The linker will put these additional symbols into
163   the VICE label file, so even local symbols can be seen in the VICE
164   monitor.
165
166
167   <tag><tt>-h, --help</tt></tag>
168
169   Print the short option summary shown above.
170
171
172   <tag><tt>-i, --ignore-case</tt></tag>
173
174   This option makes the assembler case insensitive on identifiers and labels.
175   This option will override the default, but may itself be overridden by the
176   <tt><ref id=".CASE" name=".CASE"></tt> control command.
177
178
179   <tag><tt>-l, --listing</tt></tag>
180
181   Generate an assembler listing. The listing file will always have the
182   name of the main input file with the extension replaced by ".lst". This
183   may change in future versions.
184
185
186   <tag><tt>--list-bytes n</tt></tag>
187
188   Set the maximum number of bytes printed in the listing for one line of
189   input. See the <tt><ref id=".LISTBYTES" name=".LISTBYTES"></tt> directive
190   for more information. The value zero can be used to encode an unlimited
191   number of printed bytes.
192
193
194   <tag><tt>--macpack-dir dir</tt></tag>
195
196   This options allows to specify a directory containing macro files that are
197   used instead of the builtin images when a <tt><ref id=".MACPACK"
198   name=".MACPACK"></tt> directive is encountered. If <tt>--macpack-dir</tt>
199   was specified, a <tt>.mac</tt> extension is added to the package name and
200   the resulting file is loaded from the given directory. This is most useful
201   when debugging the builtin macro packages.
202
203
204   <tag><tt>-mm model, --memory-model model</tt></tag>
205
206   Define the default memory model. Possible model specifiers are near, far and
207   huge.
208
209
210   <tag><tt>-o name</tt></tag>
211
212   The default output name is the name of the input file with the extension
213   replaced by ".o". If you don't like that, you may give another name with
214   the -o option. The output file will be placed in the same directory as
215   the source file, or, if -o is given, the full path in this name is used.
216
217
218   <tag><tt>--pagelength n</tt></tag>
219
220   sets the length of a listing page in lines. See the <tt><ref
221   id=".PAGELENGTH" name=".PAGELENGTH"></tt> directive for more information.
222
223
224   <tag><tt>-s, --smart-mode</tt></tag>
225
226   In smart mode (enabled by -s or the <tt><ref id=".SMART" name=".SMART"></tt>
227   pseudo instruction) the assembler will track usage of the <tt/REP/ and
228   <tt/SEP/ instructions in 65816 mode and update the operand sizes
229   accordingly. If the operand of such an instruction cannot be evaluated by
230   the assembler (for example, because the operand is an imported symbol), a
231   warning is issued.
232
233   Beware: Since the assembler cannot trace the execution flow this may
234   lead to false results in some cases. If in doubt, use the .ixx and .axx
235   instructions to tell the assembler about the current settings. Smart
236   mode is off by default.
237
238
239   <label id="option-t">
240   <tag><tt>-t sys, --target sys</tt></tag>
241
242   Set the target system. This will enable translation of character strings
243   and character constants into the character set of the target platform.
244   The default for the target system is "none", which means that no translation
245   will take place. The assembler supports the same target systems as the
246   compiler, see there for a list.
247
248
249   <tag><tt>-v, --verbose</tt></tag>
250
251   Increase the assembler verbosity. Usually only needed for debugging
252   purposes. You may use this option more than one time for even more
253   verbose output.
254
255
256   <tag><tt>-D</tt></tag>
257
258   This option allows you to define symbols on the command line. Without a
259   value, the symbol is defined with the value zero. When giving a value,
260   you may use the '&dollar;' prefix for hexadecimal symbols. Please note
261   that for some operating systems, '&dollar;' has a special meaning, so
262   you may have to quote the expression.
263
264
265   <tag><tt>-I dir, --include-dir dir</tt></tag>
266
267   Name a directory which is searched for include files. The option may be
268   used more than once to specify more than one directory to search. The
269   current directory is always searched first before considering any
270   additional directories.
271
272
273   <tag><tt>-U, --auto-import</tt></tag>
274
275   Mark symbols that are not defined in the sources as imported symbols. This
276   should be used with care since it delays error messages about typos and such
277   until the linker is run. The compiler uses the equivalent of this switch
278   (<tt><ref id=".AUTOIMPORT" name=".AUTOIMPORT"></tt>) to enable auto imported
279   symbols for the runtime library. However, the compiler is supposed to
280   generate code that runs through the assembler without problems, something
281   which is not always true for assembler programmers.
282
283
284   <tag><tt>-V, --version</tt></tag>
285
286   Print the version number of the assembler. If you send any suggestions
287   or bugfixes, please include the version number.
288
289
290   <label id="option-W">
291   <tag><tt>-Wn</tt></tag>
292
293   Set the warning level for the assembler. Using -W2 the assembler will
294   even warn about such things like unused imported symbols. The default
295   warning level is 1, and it would probably be silly to set it to
296   something lower.
297
298 </descrip>
299 <p>
300
301
302 <sect>Input format<p>
303
304 <sect1>Assembler syntax<p>
305
306 The assembler accepts the standard 6502/65816 assembler syntax. One line may
307 contain a label (which is identified by a colon), and, in addition to the
308 label, an assembler mnemonic, a macro, or a control command (see section <ref
309 id="control-commands" name="Control Commands"> for supported control
310 commands). Alternatively, the line may contain a symbol definition using
311 the '=' token. Everything after a semicolon is handled as a comment (that is,
312 it is ignored).
313
314 Here are some examples for valid input lines:
315
316 <tscreen><verb>
317         Label:                          ; A label and a comment
318                 lda     #$20            ; A 6502 instruction plus comment
319         L1:     ldx     #$20            ; Same with label
320         L2:     .byte   "Hello world"   ; Label plus control command
321                 mymac   $20             ; Macro expansion
322                 MySym = 3*L1            ; Symbol definition
323         MaSym   = Label                 ; Another symbol
324 </verb></tscreen>
325
326 The assembler accepts
327
328 <itemize>
329 <item>all valid 6502 mnemonics when in 6502 mode (the default or after the
330       <tt><ref id=".P02" name=".P02"></tt> command was given).
331 <item>all valid 6502 mnemonics plus a set of illegal instructions when in
332       <ref id="6502X-mode" name="6502X mode">.
333 <item>all valid 65SC02 mnemonics when in 65SC02 mode (after the
334       <tt><ref id=".PSC02" name=".PSC02"></tt> command was given).
335 <item>all valid 65C02 mnemonics when in 65C02 mode (after the
336       <tt><ref id=".PC02" name=".PC02"></tt> command was given).
337 <item>all valid 65618 mnemonics when in 65816 mode (after the
338       <tt><ref id=".P816" name=".P816"></tt> command was given).
339 <item>all valid SunPlus mnemonics when in SunPlus mode (after the
340       <tt><ref id=".SUNPLUS" name=".SUNPLUS"></tt> command was given).
341 </itemize>
342
343
344 <sect1>65816 mode<p>
345
346 In 65816 mode several aliases are accepted in addition to the official
347 mnemonics:
348
349 <tscreen><verb>
350         BGE is an alias for BCS
351         BLT is an alias for BCC
352         CPA is an alias for CMP
353         DEA is an alias for DEC A
354         INA is an alias for INC A
355         SWA is an alias for XBA
356         TAD is an alias for TCD
357         TAS is an alias for TCS
358         TDA is an alias for TDC
359         TSA is an alias for TSC
360 </verb></tscreen>
361
362
363
364 <sect1>6502X mode<label id="6502X-mode"><p>
365
366 6502X mode is an extension to the normal 6502 mode. In this mode, several
367 mnemonics for illegal instructions of the NMOS 6502 CPUs are accepted. Since
368 these instructions are illegal, there are no official mnemonics for them. The
369 unofficial ones are taken from <htmlurl
370 url="http://oxyron.net/graham/opcodes02.html"
371 name="http://oxyron.net/graham/opcodes02.html">. Please note that only the
372 ones marked as "stable" are supported. The following table uses information
373 from the mentioned web page, for more information, see there.
374
375 <itemize>
376 <item><tt>ALR: A:=(A and #{imm})*2;</tt>
377 <item><tt>ANC: A:=A and #{imm};</tt> Generates opcode &dollar;0B.
378 <item><tt>ARR: A:=(A and #{imm})/2;</tt>
379 <item><tt>AXS: X:=A and X-#{imm};</tt>
380 <item><tt>DCP: {adr}:={adr}-1; A-{adr};</tt>
381 <item><tt>ISC: {adr}:={adr}+1; A:=A-{adr};</tt>
382 <item><tt>LAS: A,X,S:={adr} and S;</tt>
383 <item><tt>LAX: A,X:={adr};</tt>
384 <item><tt>RLA: {adr}:={adr}rol; A:=A and {adr};</tt>
385 <item><tt>RRA: {adr}:={adr}ror; A:=A adc {adr};</tt>
386 <item><tt>SAX: {adr}:=A and X;</tt>
387 <item><tt>SLO: {adr}:={adr}*2; A:=A or {adr};</tt>
388 <item><tt>SRE: {adr}:={adr}/2; A:=A xor {adr};</tt>
389 </itemize>
390
391
392
393 <sect1>sweet16 mode<label id="sweet16-mode"><p>
394
395 SWEET 16 is an interpreter for a pseudo 16 bit CPU written by Steve Wozniak
396 for the Apple ][ machines. It is available in the Apple ][ ROM. ca65 can
397 generate code for this pseudo CPU when switched into sweet16 mode. The
398 following is special in sweet16 mode:
399
400 <itemize>
401
402 <item>The '@' character denotes indirect addressing and is no longer available
403 for cheap local labels. If you need cheap local labels, you will have to
404 switch to another lead character using the <tt/<ref id=".LOCALCHAR"
405 name=".LOCALCHAR">/ command.
406
407 <item>Registers are specified using <tt/R0/ .. <tt/R15/. In sweet16 mode,
408 these identifiers are reserved words.
409
410 </itemize>
411
412 Please note that the assembler does neither supply the interpreter needed for
413 SWEET 16 code, nor the zero page locations needed for the SWEET 16 registers,
414 nor does it call the interpreter. All this must be done by your program. Apple
415 ][ programmers do probably know how to use sweet16 mode.
416
417 For more information about SWEET 16, see
418 <htmlurl url="http://www.6502.org/source/interpreters/sweet16.htm"
419 name="http://www.6502.org/source/interpreters/sweet16.htm">.
420
421
422 <sect1>Number format<p>
423
424 For literal values, the assembler accepts the widely used number formats: A
425 preceding '&dollar;' or a trailing 'h' denotes a hex value, a preceding '%'
426 denotes a binary value, and a bare number is interpreted as a decimal. There
427 are currently no octal values and no floats.
428
429
430 <sect1>Conditional assembly<p>
431
432 Please note that when using the conditional directives (<tt/.IF/ and friends),
433 the input must consist of valid assembler tokens, even in <tt/.IF/ branches
434 that are not assembled. The reason for this behaviour is that the assembler
435 must still be able to detect the ending tokens (like <tt/.ENDIF/), so
436 conversion of the input stream into tokens still takes place. As a consequence
437 conditional assembly directives may <bf/not/ be used to prevent normal text
438 (used as a comment or similar) from being assembled. <p>
439
440
441 <sect>Expressions<p>
442
443
444 <sect1>Expression evaluation<p>
445
446 All expressions are evaluated with (at least) 32 bit precision. An
447 expression may contain constant values and any combination of internal and
448 external symbols. Expressions that cannot be evaluated at assembly time
449 are stored inside the object file for evaluation by the linker.
450 Expressions referencing imported symbols must always be evaluated by the
451 linker.
452
453
454 <sect1>Size of an expression result<p>
455
456 Sometimes, the assembler must know about the size of the value that is the
457 result of an expression. This is usually the case, if a decision has to be
458 made, to generate a zero page or an absolute memory references. In this
459 case, the assembler has to make some assumptions about the result of an
460 expression:
461
462 <itemize>
463 <item>  If the result of an expression is constant, the actual value is
464         checked to see if it's a byte sized expression or not.
465 <item>  If the expression is explicitly casted to a byte sized expression by
466         one of the '&gt;', '&lt;' or '^' operators, it is a byte expression.
467 <item>  If this is not the case, and the expression contains a symbol,
468         explicitly declared as zero page symbol (by one of the .importzp or
469         .exportzp instructions), then the whole expression is assumed to be
470         byte sized.
471 <item>  If the expression contains symbols that are not defined, and these
472         symbols are local symbols, the enclosing scopes are searched for a
473         symbol with the same name. If one exists and this symbol is defined,
474         it's attributes are used to determine the result size.
475 <item>  In all other cases the expression is assumed to be word sized.
476 </itemize>
477
478 Note: If the assembler is not able to evaluate the expression at assembly
479 time, the linker will evaluate it and check for range errors as soon as
480 the result is known.
481
482
483 <sect1>Boolean expressions<p>
484
485 In the context of a boolean expression, any non zero value is evaluated as
486 true, any other value to false. The result of a boolean expression is 1 if
487 it's true, and zero if it's false. There are boolean operators with extreme
488 low precedence with version 2.x (where x &gt; 0). The <tt/.AND/ and <tt/.OR/
489 operators are shortcut operators. That is, if the result of the expression is
490 already known, after evaluating the left hand side, the right hand side is
491 not evaluated.
492
493
494 <sect1>Constant expressions<p>
495
496 Sometimes an expression must evaluate to a constant without looking at any
497 further input. One such example is the <tt/<ref id=".IF" name=".IF">/ command
498 that decides if parts of the code are assembled or not. An expression used in
499 the <tt/.IF/ command cannot reference a symbol defined later, because the
500 decision about the <tt/.IF/ must be made at the point when it is read. If the
501 expression used in such a context contains only constant numerical values,
502 there is no problem. When unresolvable symbols are involved it may get harder
503 for the assembler to determine if the expression is actually constant, and it
504 is even possible to create expressions that aren't recognized as constant.
505 Simplifying the expressions will often help.
506
507 In cases where the result of the expression is not needed immediately, the
508 assembler will delay evaluation until all input is read, at which point all
509 symbols are known. So using arbitrary complex constant expressions is no
510 problem in most cases.
511
512
513
514 <sect1>Available operators<label id="operators"><p>
515
516 <table>
517 <tabular ca="clc">
518 <bf/Operator/| <bf/Description/| <bf/Precedence/@<hline>
519 | Built-in string functions| 0@
520 ||~@
521 | Built-in pseudo-variables| 1@
522 | Built-in pseudo-functions| 1@
523 +| Unary positive| 1@
524 -| Unary negative| 1@
525 &tilde;<newline>
526 .BITNOT| Unary bitwise not| 1@
527 &lt;<newline>
528 .LOBYTE| Unary low-byte operator| 1@
529 &gt;<newline>
530 .HIBYTE| Unary high-byte operator| 1@
531 ^<newline>
532 .BANKBYTE| Unary bank-byte operator| 1@
533 ||~@
534 *| Multiplication| 2@
535 /| Division| 2@
536 .MOD| Modulo operator| 2@
537 &amp;<newline>
538 .BITAND| Bitwise and| 2@
539 ^<newline>
540 .BITXOR| Binary bitwise xor| 2@
541 &lt;&lt;<newline>
542 .SHL| Shift-left operator| 2@
543 &gt;&gt;<newline>
544 .SHR| Shift-right operator| 2@
545 ||~@
546 +| Binary addition| 3@
547 -| Binary subtraction| 3@
548 &verbar;<newline>
549 .BITOR| Bitwise or| 3@
550 ||~@
551 = | Compare operator (equal)| 4@
552 &lt;&gt;| Compare operator (not equal)| 4@
553 &lt;| Compare operator (less)| 4@
554 &gt;| Compare operator (greater)| 4@
555 &lt;=| Compare operator (less or equal)| 4@
556 &gt;=| Compare operator (greater or equal)| 4@
557 ||~@
558 &amp;&amp;<newline>
559 .AND| Boolean and| 5@
560 .XOR| Boolean xor| 5@
561 ||~@
562 &verbar;&verbar;<newline>
563 .OR| Boolean or| 6@
564 ||~@
565 !<newline>
566 .NOT| Boolean not| 7@<hline>
567 </tabular>
568 <caption>Available operators, sorted by precedence
569 </table>
570
571 To force a specific order of evaluation, parentheses may be used, as usual.
572
573
574
575 <sect>Symbols and labels<p>
576
577 The assembler allows you to use symbols instead of naked values to make
578 the source more readable. There are a lot of different ways to define and
579 use symbols and labels, giving a lot of flexibility.
580
581
582 <sect1>Numeric constants<p>
583
584 Numeric constants are defined using the equal sign or the label assignment
585 operator. After doing
586
587 <tscreen><verb>
588       two = 2
589 </verb></tscreen>
590
591 may use the symbol "two" in every place where a number is expected, and it is
592 evaluated to the value 2 in this context. The label assignment operator causes
593 the same, but causes the symbol to be marked as a label, which may cause a
594 different handling in the debugger:
595
596 <tscreen><verb>
597       io := $d000
598 </verb></tscreen>
599
600 The right side can of course be an expression:
601
602 <tscreen><verb>
603       four = two * two
604 </verb></tscreen>
605
606
607 <sect1>Standard labels<p>
608
609 A label is defined by writing the name of the label at the start of the line
610 (before any instruction mnemonic, macro or pseudo directive), followed by a
611 colon. This will declare a symbol with the given name and the value of the
612 current program counter.
613
614
615 <sect1>Local labels and symbols<p>
616
617 Using the <tt><ref id=".PROC" name=".PROC"></tt> directive, it is possible to
618 create regions of code where the names of labels and symbols are local to this
619 region. They are not known outside of this region and cannot be accessed from
620 there. Such regions may be nested like PROCEDUREs in Pascal.
621
622 See the description of the <tt><ref id=".PROC" name=".PROC"></tt>
623 directive for more information.
624
625
626 <sect1>Cheap local labels<p>
627
628 Cheap local labels are defined like standard labels, but the name of the
629 label must begin with a special symbol (usually '@', but this can be
630 changed by the <tt><ref id=".LOCALCHAR" name=".LOCALCHAR"></tt>
631 directive).
632
633 Cheap local labels are visible only between two non cheap labels. As soon as a
634 standard symbol is encountered (this may also be a local symbol if inside a
635 region defined with the <tt><ref id=".PROC" name=".PROC"></tt> directive), the
636 cheap local symbol goes out of scope.
637
638 You may use cheap local labels as an easy way to reuse common label
639 names like "Loop". Here is an example:
640
641 <tscreen><verb>
642         Clear:  lda    #$00             ; Global label
643                 ldy    #$20
644         @Loop:  sta    Mem,y            ; Local label
645                 dey
646                 bne    @Loop            ; Ok
647                 rts
648         Sub:    ...                     ; New global label
649                 bne    @Loop            ; ERROR: Unknown identifier!
650 </verb></tscreen>
651
652 <sect1>Unnamed labels<p>
653
654 If you really want to write messy code, there are also unnamed labels. These
655 labels do not have a name (you guessed that already, didn't you?). A colon is
656 used to mark the absence of the name.
657
658 Unnamed labels may be accessed by using the colon plus several minus or plus
659 characters as a label designator. Using the '-' characters will create a back
660 reference (use the n'th label backwards), using '+' will create a forward
661 reference (use the n'th label in forward direction). An example will help to
662 understand this:
663
664 <tscreen><verb>
665         :       lda     (ptr1),y        ; #1
666                 cmp     (ptr2),y
667                 bne     :+              ; -> #2
668                 tax
669                 beq     :+++            ; -> #4
670                 iny
671                 bne     :-              ; -> #1
672                 inc     ptr1+1
673                 inc     ptr2+1
674                 bne     :-              ; -> #1
675
676         :       bcs     :+              ; #2 -> #3
677                 ldx     #$FF
678                 rts
679
680         :       ldx     #$01            ; #3
681         :       rts                     ; #4
682 </verb></tscreen>
683
684 As you can see from the example, unnamed labels will make even short
685 sections of code hard to understand, because you have to count labels
686 to find branch targets (this is the reason why I for my part do
687 prefer the "cheap" local labels). Nevertheless, unnamed labels are
688 convenient in some situations, so it's your decision.
689
690
691 <sect1>Using macros to define labels and constants<p>
692
693 While there are drawbacks with this approach, it may be handy in some
694 situations. Using <tt><ref id=".DEFINE" name=".DEFINE"></tt>, it is
695 possible to define symbols or constants that may be used elsewhere. Since
696 the macro facility works on a very low level, there is no scoping. On the
697 other side, you may also define string constants this way (this is not
698 possible with the other symbol types).
699
700 Example:
701
702 <tscreen><verb>
703         .DEFINE two     2
704         .DEFINE version "SOS V2.3"
705
706         four = two * two        ; Ok
707         .byte   version         ; Ok
708
709         .PROC                   ; Start local scope
710         two = 3                 ; Will give "2 = 3" - invalid!
711         .ENDPROC
712 </verb></tscreen>
713
714
715 <sect1>Symbols and <tt>.DEBUGINFO</tt><p>
716
717 If <tt><ref id=".DEBUGINFO" name=".DEBUGINFO"></tt> is enabled (or <ref
718 id="option-g" name="-g"> is given on the command line), global, local and
719 cheap local labels are written to the object file and will be available in the
720 symbol file via the linker. Unnamed labels are not written to the object file,
721 because they don't have a name which would allow to access them.
722
723
724
725 <sect>Scopes<label id="scopes"><p>
726
727 ca65 implements several sorts of scopes for symbols.
728
729 <sect1>Global scope<p>
730
731 All (non cheap local) symbols that are declared outside of any nested scopes
732 are in global scope.
733
734
735 <sect1>Cheap locals<p>
736
737 A special scope is the scope for cheap local symbols. It lasts from one non
738 local symbol to the next one, without any provisions made by the programmer.
739 All other scopes differ in usage but use the same concept internally.
740
741
742 <sect1>Generic nested scopes<p>
743
744 A nested scoped for generic use is started with <tt/<ref id=".SCOPE"
745 name=".SCOPE">/ and closed with <tt/<ref id=".ENDSCOPE" name=".ENDSCOPE">/.
746 The scope can have a name, in which case it is accessible from the outside by
747 using <ref id="scopesyntax" name="explicit scopes">. If the scope does not
748 have a name, all symbols created within the scope are local to the scope, and
749 aren't accessible from the outside.
750
751 A nested scope can access symbols from the local or from enclosing scopes by
752 name without using explicit scope names. In some cases there may be
753 ambiguities, for example if there is a reference to a local symbol that is not
754 yet defined, but a symbol with the same name exists in outer scopes:
755
756 <tscreen><verb>
757         .scope  outer
758                 foo     = 2
759                 .scope  inner
760                         lda     #foo
761                         foo     = 3
762                 .endscope
763         .endscope
764 </verb></tscreen>
765
766 In the example above, the <tt/lda/ instruction will load the value 3 into the
767 accumulator, because <tt/foo/ is redefined in the scope. However:
768
769 <tscreen><verb>
770         .scope  outer
771                 foo     = $1234
772                 .scope  inner
773                         lda     foo,x
774                         foo     = $12
775                 .endscope
776         .endscope
777 </verb></tscreen>
778
779 Here, <tt/lda/ will still load from <tt/$12,x/, but since it is unknown to the
780 assembler that <tt/foo/ is a zeropage symbol when translating the instruction,
781 absolute mode is used instead. In fact, the assembler will not use absolute
782 mode by default, but it will search through the enclosing scopes for a symbol
783 with the given name. If one is found, the address size of this symbol is used.
784 This may lead to errors:
785
786 <tscreen><verb>
787         .scope  outer
788                 foo     = $12
789                 .scope  inner
790                         lda     foo,x
791                         foo     = $1234
792                 .endscope
793         .endscope
794 </verb></tscreen>
795
796 In this case, when the assembler sees the symbol <tt/foo/ in the <tt/lda/
797 instruction, it will search for an already defined symbol <tt/foo/. It will
798 find <tt/foo/ in scope <tt/outer/, and a close look reveals that it is a
799 zeropage symbol. So the assembler will use zeropage addressing mode. If
800 <tt/foo/ is redefined later in scope <tt/inner/, the assembler tries to change
801 the address in the <tt/lda/ instruction already translated, but since the new
802 value needs absolute addressing mode, this fails, and an error message "Range
803 error" is output.
804
805 Of course the most simple solution for the problem is to move the definition
806 of <tt/foo/ in scope <tt/inner/ upwards, so it precedes its use. There may be
807 rare cases when this cannot be done. In these cases, you can use one of the
808 address size override operators:
809
810 <tscreen><verb>
811         .scope  outer
812                 foo     = $12
813                 .scope  inner
814                         lda     a:foo,x
815                         foo     = $1234
816                 .endscope
817         .endscope
818 </verb></tscreen>
819
820 This will cause the <tt/lda/ instruction to be translated using absolute
821 addressing mode, which means changing the symbol reference later does not
822 cause any errors.
823
824
825 <sect1>Nested procedures<p>
826
827 A nested procedure is created by use of <tt/<ref id=".PROC" name=".PROC">/. It
828 differs from a <tt/<ref id=".SCOPE" name=".SCOPE">/ in that it must have a
829 name, and a it will introduce a symbol with this name in the enclosing scope.
830 So
831
832 <tscreen><verb>
833         .proc   foo
834                 ...
835         .endscope
836 </verb></tscreen>
837
838 is actually the same as
839
840 <tscreen><verb>
841         foo:
842         .scope  foo
843                 ...
844         .endscope
845 </verb></tscreen>
846
847 This is the reason why a procedure must have a name. If you want a scope
848 without a name, use <tt/<ref id=".SCOPE" name=".SCOPE">/.
849
850 <bf/Note:/ As you can see from the example above, scopes and symbols live in
851 different namespaces. There can be a symbol named <tt/foo/ and a scope named
852 <tt/foo/ without any conflicts (but see the section titled <ref
853 id="scopesearch" name="&quot;Scope search order&quot;">).
854
855
856 <sect1>Structs, unions and enums<p>
857
858 Structs, unions and enums are explained in a <ref id="structs" name="separate
859 section">, I do only cover them here, because if they are declared with a
860 name, they open a nested scope, similar to <tt/<ref id=".SCOPE"
861 name=".SCOPE">/. However, when no name is specified, the behaviour is
862 different: In this case, no new scope will be opened, symbols declared within
863 a struct, union, or enum declaration will then be added to the enclosing scope
864 instead.
865
866
867 <sect1>Explicit scope specification<label id="scopesyntax"><p>
868
869 Accessing symbols from other scopes is possible by using an explicit scope
870 specification, provided that the scope where the symbol lives in has a name.
871 The namespace token (<tt/::/) is used to access other scopes:
872
873 <tscreen><verb>
874         .scope  foo
875         bar:    .word   0
876         .endscope
877
878                 ...
879                 lda     foo::bar        ; Access foo in scope bar
880 </verb></tscreen>
881
882 The only way to deny access to a scope from the outside is to declare a scope
883 without a name (using the <tt/<ref id=".SCOPE" name=".SCOPE">/ command).
884
885 A special syntax is used to specify the global scope: If a symbol or scope is
886 preceded by the namespace token, the global scope is searched:
887
888 <tscreen><verb>
889         bar     = 3
890
891         .scope  foo
892                 bar     = 2
893                 lda     #::bar  ; Access the global bar (which is 3)
894         .endscope
895 </verb></tscreen>
896
897
898 <sect1>Scope search order<label id="scopesearch"><p>
899
900 The assembler searches for a scope in a similar way as for a symbol. First, it
901 looks in the current scope, and then it walks up the enclosing scopes until
902 the scope is found.
903
904 However, one important thing to note when using explicit scope syntax is, that
905 a symbol may be accessed before it is defined, but a scope may <bf/not/ be
906 used without a preceding definition. This means that in the following
907 example:
908
909 <tscreen><verb>
910         .scope  foo
911                 bar     = 3
912         .endscope
913
914         .scope  outer
915                 lda     #foo::bar  ; Will load 3, not 2!
916                 .scope  foo
917                         bar     = 2
918                 .endscope
919         .endscope
920 </verb></tscreen>
921
922 the reference to the scope <tt/foo/ will use the global scope, and not the
923 local one, because the local one is not visible at the point where it is
924 referenced.
925
926 Things get more complex if a complete chain of scopes is specified:
927
928 <tscreen><verb>
929         .scope  foo
930                 .scope  outer
931                         .scope  inner
932                                 bar = 1
933                         .endscope
934                 .endscope
935                 .scope  another
936                         .scope  nested
937                                 lda     #outer::inner::bar      ; 1
938                         .endscope
939                 .endscope
940         .endscope
941
942         .scope  outer
943                 .scope  inner
944                         bar = 2
945                 .endscope
946         .endscope
947 </verb></tscreen>
948
949 When <tt/outer::inner::bar/ is referenced in the <tt/lda/ instruction, the
950 assembler will first search in the local scope for a scope named <tt/outer/.
951 Since none is found, the enclosing scope (<tt/another/) is checked. There is
952 still no scope named <tt/outer/, so scope <tt/foo/ is checked, and finally
953 scope <tt/outer/ is found. Within this scope, <tt/inner/ is searched, and in
954 this scope, the assembler looks for a symbol named <tt/bar/.
955
956 Please note that once the anchor scope is found, all following scopes
957 (<tt/inner/ in this case) are expected to be found exactly in this scope. The
958 assembler will search the scope tree only for the first scope (if it is not
959 anchored in the root scope). Starting from there on, there is no flexibility,
960 so if the scope named <tt/outer/ found by the assembler does not contain a
961 scope named <tt/inner/, this would be an error, even if such a pair does exist
962 (one level up in global scope).
963
964 Ambiguities that may be introduced by this search algorithm may be removed by
965 anchoring the scope specification in the global scope. In the example above,
966 if you want to access the "other" symbol <tt/bar/, you would have to write:
967
968 <tscreen><verb>
969         .scope  foo
970                 .scope  outer
971                         .scope  inner
972                                 bar = 1
973                         .endscope
974                 .endscope
975                 .scope  another
976                         .scope  nested
977                                 lda     #::outer::inner::bar    ; 2
978                         .endscope
979                 .endscope
980         .endscope
981
982         .scope  outer
983                 .scope  inner
984                         bar = 2
985                 .endscope
986         .endscope
987 </verb></tscreen>
988
989
990 <sect>Address sizes and memory models<label id="address-sizes"><p>
991
992 <sect1>Address sizes<p>
993
994 ca65 assigns each segment and each symbol an address size. This is true, even
995 if the symbol is not used as an address. You may also think of a value range
996 of the symbol instead of an address size.
997
998 Possible address sizes are:
999
1000 <itemize>
1001 <item>Zeropage or direct (8 bits)
1002 <item>Absolute (16 bits)
1003 <item>Far (24 bits)
1004 <item>Long (32 bits)
1005 </itemize>
1006
1007 Since the assembler uses default address sizes for the segments and symbols,
1008 it is usually not necessary to override the default behaviour. In cases, where
1009 it is necessary, the following keywords may be used to specify address sizes:
1010
1011 <itemize>
1012 <item>DIRECT, ZEROPAGE or ZP for zeropage addressing (8 bits).
1013 <item>ABSOLUTE, ABS or NEAR for absolute addressing (16 bits).
1014 <item>FAR for far addressing (24 bits).
1015 <item>LONG or DWORD for long addressing (32 bits).
1016 </itemize>
1017
1018
1019 <sect1>Address sizes of segments<p>
1020
1021 The assembler assigns an address size to each segment. Since the
1022 representation of a label within this segment is "segment start + offset",
1023 labels will inherit the address size of the segment they are declared in.
1024
1025 The address size of a segment may be changed, by using an optional address
1026 size modifier. See the <tt/<ref id=".SEGMENT" name="segment directive">/ for
1027 an explanation on how this is done.
1028
1029
1030 <sect1>Address sizes of symbols<p>
1031
1032
1033
1034
1035 <sect1>Memory models<p>
1036
1037 The default address size of a segment depends on the memory model used. Since
1038 labels inherit the address size from the segment they are declared in,
1039 changing the memory model is an easy way to change the address size of many
1040 symbols at once.
1041
1042
1043
1044
1045 <sect>Pseudo variables<label id="pseudo-variables"><p>
1046
1047 Pseudo variables are readable in all cases, and in some special cases also
1048 writable.
1049
1050 <sect1><tt>*</tt><p>
1051
1052   Reading this pseudo variable will return the program counter at the start
1053   of the current input line.
1054
1055   Assignment to this variable is possible when <tt/<ref id=".FEATURE"
1056   name=".FEATURE pc_assignment">/ is used. Note: You should not use
1057   assignments to <tt/*/, use <tt/<ref id=".ORG" name=".ORG">/ instead.
1058
1059
1060 <sect1><tt>.CPU</tt><label id=".CPU"><p>
1061
1062   Reading this pseudo variable will give a constant integer value that
1063   tells which CPU is currently enabled. It can also tell which instruction
1064   set the CPU is able to translate. The value read from the pseudo variable
1065   should be further examined by using one of the constants defined by the
1066   "cpu" macro package (see <tt/<ref id=".MACPACK" name=".MACPACK">/).
1067
1068   It may be used to replace the .IFPxx pseudo instructions or to construct
1069   even more complex expressions.
1070
1071   Example:
1072
1073   <tscreen><verb>
1074         .macpack        cpu
1075         .if     (.cpu .bitand CPU_ISET_65816)
1076                 phx
1077                 phy
1078         .else
1079                 txa
1080                 pha
1081                 tya
1082                 pha
1083         .endif
1084   </verb></tscreen>
1085
1086
1087 <sect1><tt>.PARAMCOUNT</tt><label id=".PARAMCOUNT"><p>
1088
1089   This builtin pseudo variable is only available in macros. It is replaced by
1090   the actual number of parameters that were given in the macro invocation.
1091
1092   Example:
1093
1094   <tscreen><verb>
1095         .macro  foo     arg1, arg2, arg3
1096         .if     .paramcount <> 3
1097         .error  "Too few parameters for macro foo"
1098         .endif
1099         ...
1100         .endmacro
1101   </verb></tscreen>
1102
1103   See section <ref id="macros" name="Macros">.
1104
1105
1106 <sect1><tt>.TIME</tt><label id=".TIME"><p>
1107
1108   Reading this pseudo variable will give a constant integer value that
1109   represents the current time in POSIX standard (as seconds since the
1110   Epoch).
1111
1112   It may be used to encode the time of translation somewhere in the created
1113   code.
1114
1115   Example:
1116
1117   <tscreen><verb>
1118         .dword  .time   ; Place time here
1119   </verb></tscreen>
1120
1121
1122 <sect1><tt>.VERSION</tt><label id=".VERSION"><p>
1123
1124   Reading this pseudo variable will give the assembler version according to
1125   the following formula:
1126
1127         VER_MAJOR*$100 + VER_MINOR*$10 + VER_PATCH
1128
1129   It may be used to encode the assembler version or check the assembler for
1130   special features not available with older versions.
1131
1132   Example:
1133
1134   Version 2.11.1 of the assembler will return $2B1 as numerical constant when
1135   reading the pseudo variable <tt/.VERSION/.
1136
1137
1138
1139 <sect>Pseudo functions<label id="pseudo-functions"><p>
1140
1141 Pseudo functions expect their arguments in parenthesis, and they have a result,
1142 either a string or an expression.
1143
1144
1145 <sect1><tt>.BANKBYTE</tt><label id=".BANKBYTE"><p>
1146
1147   The function returns the bank byte (that is, bits 16-23) of its argument.
1148   It works identical to the '^' operator.
1149
1150   See: <tt><ref id=".HIBYTE" name=".HIBYTE"></tt>,
1151        <tt><ref id=".LOBYTE" name=".LOBYTE"></tt>
1152
1153
1154 <sect1><tt>.BLANK</tt><label id=".BLANK"><p>
1155
1156   Builtin function. The function evaluates its argument in braces and yields
1157   "false" if the argument is non blank (there is an argument), and "true" if
1158   there is no argument.  The token list that makes up the function argument
1159   may optionally be enclosed in curly braces. This allows the inclusion of
1160   tokens that would otherwise terminate the list (the closing right
1161   parenthesis). The curly braces are not considered part of the list, a list
1162   just consisting of curly braces is considered to be empty.
1163
1164   As an example, the <tt/.IFBLANK/ statement may be replaced by
1165
1166   <tscreen><verb>
1167         .if     .blank({arg})
1168   </verb></tscreen>
1169
1170
1171
1172 <sect1><tt>.CONCAT</tt><label id=".CONCAT"><p>
1173
1174   Builtin string function. The function allows to concatenate a list of string
1175   constants separated by commas. The result is a string constant that is the
1176   concatenation of all arguments. This function is most useful in macros and
1177   when used together with the <tt/.STRING/ builtin function. The function may
1178   be used in any case where a string constant is expected.
1179
1180   Example:
1181
1182   <tscreen><verb>
1183         .include        .concat ("myheader", ".", "inc")
1184   </verb></tscreen>
1185
1186   This is the same as the command
1187
1188   <tscreen><verb>
1189         .include        "myheader.inc"
1190   </verb></tscreen>
1191
1192
1193 <sect1><tt>.CONST</tt><label id=".CONST"><p>
1194
1195   Builtin function. The function evaluates its argument in braces and
1196   yields "true" if the argument is a constant expression (that is, an
1197   expression that yields a constant value at assembly time) and "false"
1198   otherwise. As an example, the .IFCONST statement may be replaced by
1199
1200   <tscreen><verb>
1201         .if     .const(a + 3)
1202   </verb></tscreen>
1203
1204
1205 <sect1><tt>.HIBYTE</tt><label id=".HIBYTE"><p>
1206
1207   The function returns the high byte (that is, bits 8-15) of its argument.
1208   It works identical to the '>' operator.
1209
1210   See: <tt><ref id=".LOBYTE" name=".LOBYTE"></tt>,
1211        <tt><ref id=".BANKBYTE" name=".BANKBYTE"></tt>
1212
1213
1214 <sect1><tt>.HIWORD</tt><label id=".HIWORD"><p>
1215
1216   The function returns the high word (that is, bits 16-31) of its argument.
1217
1218   See: <tt><ref id=".LOWORD" name=".LOWORD"></tt>
1219
1220
1221 <sect1><tt>.IDENT</tt><label id=".IDENT"><p>
1222
1223   The function expects a string as its argument, and converts this argument
1224   into an identifier. If the string starts with the current <tt/<ref
1225   id=".LOCALCHAR" name=".LOCALCHAR">/, it will be converted into a cheap local
1226   identifier, otherwise it will be converted into a normal identifier.
1227
1228   Example:
1229
1230   <tscreen><verb>
1231         .macro  makelabel       arg1, arg2
1232                 .ident (.concat (arg1, arg2)):
1233         .endmacro
1234
1235                 makelabel       "foo", "bar"
1236
1237                 .word           foobar          ; Valid label
1238   </verb></tscreen>
1239
1240
1241 <sect1><tt>.LEFT</tt><label id=".LEFT"><p>
1242
1243   Builtin function. Extracts the left part of a given token list.
1244
1245   Syntax:
1246
1247   <tscreen><verb>
1248         .LEFT (&lt;int expr&gt;, &lt;token list&gt;)
1249   </verb></tscreen>
1250
1251   The first integer expression gives the number of tokens to extract from
1252   the token list. The second argument is the token list itself. The token
1253   list may optionally be enclosed into curly braces. This allows the
1254   inclusion of tokens that would otherwise terminate the list (the closing
1255   right paren in the given case).
1256
1257   Example:
1258
1259   To check in a macro if the given argument has a '#' as first token
1260   (immediate addressing mode), use something like this:
1261
1262   <tscreen><verb>
1263         .macro  ldax    arg
1264                 ...
1265                 .if (.match (.left (1, {arg}), #))
1266
1267                 ; ldax called with immediate operand
1268                 ...
1269
1270                 .endif
1271                 ...
1272         .endmacro
1273   </verb></tscreen>
1274
1275   See also the <tt><ref id=".MID" name=".MID"></tt> and <tt><ref id=".RIGHT"
1276   name=".RIGHT"></tt> builtin functions.
1277
1278
1279 <sect1><tt>.LOBYTE</tt><label id=".LOBYTE"><p>
1280
1281   The function returns the low byte (that is, bits 0-7) of its argument.
1282   It works identical to the '<' operator.
1283
1284   See: <tt><ref id=".HIBYTE" name=".HIBYTE"></tt>,
1285        <tt><ref id=".BANKBYTE" name=".BANKBYTE"></tt>
1286
1287
1288 <sect1><tt>.LOWORD</tt><label id=".LOWORD"><p>
1289
1290   The function returns the low word (that is, bits 0-15) of its argument.
1291
1292   See: <tt><ref id=".HIWORD" name=".HIWORD"></tt>
1293
1294
1295 <sect1><tt>.MATCH</tt><label id=".MATCH"><p>
1296
1297   Builtin function. Matches two token lists against each other. This is
1298   most useful within macros, since macros are not stored as strings, but
1299   as lists of tokens.
1300
1301   The syntax is
1302
1303   <tscreen><verb>
1304         .MATCH(&lt;token list #1&gt;, &lt;token list #2&gt;)
1305   </verb></tscreen>
1306
1307   Both token list may contain arbitrary tokens with the exception of the
1308   terminator token (comma resp. right parenthesis) and
1309
1310   <itemize>
1311   <item>end-of-line
1312   <item>end-of-file
1313   </itemize>
1314
1315   The token lists may optionally be enclosed into curly braces. This allows
1316   the inclusion of tokens that would otherwise terminate the list (the closing
1317   right paren in the given case). Often a macro parameter is used for any of
1318   the token lists.
1319
1320   Please note that the function does only compare tokens, not token
1321   attributes. So any number is equal to any other number, regardless of the
1322   actual value. The same is true for strings. If you need to compare tokens
1323   <em/and/ token attributes, use the <tt><ref id=".XMATCH"
1324   name=".XMATCH"></tt> function.
1325
1326   Example:
1327
1328   Assume the macro <tt/ASR/, that will shift right the accumulator by one,
1329   while honoring the sign bit. The builtin processor instructions will allow
1330   an optional "A" for accu addressing for instructions like <tt/ROL/ and
1331   <tt/ROR/. We will use the <tt><ref id=".MATCH" name=".MATCH"></tt> function
1332   to check for this and print and error for invalid calls.
1333
1334   <tscreen><verb>
1335         .macro  asr     arg
1336
1337                 .if (.not .blank(arg)) .and (.not .match ({arg}, a))
1338                 .error "Syntax error"
1339                 .endif
1340
1341                 cmp     #$80            ; Bit 7 into carry
1342                 lsr     a               ; Shift carry into bit 7
1343
1344         .endmacro
1345   </verb></tscreen>
1346
1347   The macro will only accept no arguments, or one argument that must be the
1348   reserved keyword "A".
1349
1350   See: <tt><ref id=".XMATCH" name=".XMATCH"></tt>
1351
1352
1353 <sect1><tt>.MID</tt><label id=".MID"><p>
1354
1355   Builtin function. Takes a starting index, a count and a token list as
1356   arguments. Will return part of the token list.
1357
1358   Syntax:
1359
1360   <tscreen><verb>
1361         .MID (&lt;int expr&gt;, &lt;int expr&gt;, &lt;token list&gt;)
1362   </verb></tscreen>
1363
1364   The first integer expression gives the starting token in the list (the first
1365   token has index 0). The second integer expression gives the number of tokens
1366   to extract from the token list. The third argument is the token list itself.
1367   The token list may optionally be enclosed into curly braces. This allows the
1368   inclusion of tokens that would otherwise terminate the list (the closing
1369   right paren in the given case).
1370
1371   Example:
1372
1373   To check in a macro if the given argument has a '<tt/#/' as first token
1374   (immediate addressing mode), use something like this:
1375
1376     <tscreen><verb>
1377         .macro  ldax    arg
1378                 ...
1379                 .if (.match (.mid (0, 1, {arg}), #))
1380
1381                 ; ldax called with immediate operand
1382                 ...
1383
1384                 .endif
1385                 ...
1386         .endmacro
1387   </verb></tscreen>
1388
1389   See also the <tt><ref id=".LEFT" name=".LEFT"></tt> and <tt><ref id=".RIGHT"
1390   name=".RIGHT"></tt> builtin functions.
1391
1392
1393 <sect1><tt>.REF, .REFERENCED</tt><label id=".REFERENCED"><p>
1394
1395   Builtin function. The function expects an identifier as argument in braces.
1396   The argument is evaluated, and the function yields "true" if the identifier
1397   is a symbol that has already been referenced somewhere in the source file up
1398   to the current position. Otherwise the function yields false. As an example,
1399   the <tt><ref id=".IFREF" name=".IFREF"></tt> statement may be replaced by
1400
1401   <tscreen><verb>
1402         .if     .referenced(a)
1403   </verb></tscreen>
1404
1405   See: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
1406
1407
1408 <sect1><tt>.RIGHT</tt><label id=".RIGHT"><p>
1409
1410   Builtin function. Extracts the right part of a given token list.
1411
1412   Syntax:
1413
1414   <tscreen><verb>
1415         .RIGHT (&lt;int expr&gt;, &lt;token list&gt;)
1416   </verb></tscreen>
1417
1418   The first integer expression gives the number of tokens to extract from the
1419   token list. The second argument is the token list itself.  The token list
1420   may optionally be enclosed into curly braces. This allows the inclusion of
1421   tokens that would otherwise terminate the list (the closing right paren in
1422   the given case).
1423
1424   See also the <tt><ref id=".LEFT" name=".LEFT"></tt> and <tt><ref id=".MID"
1425   name=".MID"></tt> builtin functions.
1426
1427
1428 <sect1><tt>.SIZEOF</tt><label id=".SIZEOF"><p>
1429
1430   <tt/.SIZEOF/ is a pseudo function that returns the size of its argument. The
1431   argument can be a struct/union, a struct member, a procedure, or a label. In
1432   case of a procedure or label, its size is defined by the amount of data
1433   placed in the segment where the label is relative to. If a line of code
1434   switches segments (for example in a macro) data placed in other segments
1435   does not count for the size.
1436
1437   Please note that a symbol or scope must exist, before it is used together with
1438   <tt/.SIZEOF/ (this may get relaxed later, but will always be true for scopes).
1439   A scope has preference over a symbol with the same name, so if the last part
1440   of a name represents both, a scope and a symbol, the scope is chosen over the
1441   symbol.
1442
1443   After the following code:
1444
1445   <tscreen><verb>
1446         .struct Point                   ; Struct size = 4
1447                 xcoord  .word
1448                 xcoord  .word
1449         .endstruct
1450
1451         P:      .tag    Point           ; Declare a point
1452         @P:     .tag    Point           ; Declare another point
1453
1454         .code
1455         .proc   Code
1456                 nop
1457                 .proc   Inner
1458                         nop
1459                 .endproc
1460                 nop
1461         .endproc
1462
1463         .proc   Data
1464         .data                           ; Segment switch!!!
1465                 .res    4
1466         .endproc
1467   </verb></tscreen>
1468
1469   <descrip>
1470     <tag><tt/.sizeof(Point)/</tag>
1471     will have the value 4, because this is the size of struct <tt/Point/.
1472
1473     <tag><tt/.sizeof(Point::xcoord)/</tag>
1474     will have the value 2, because this is the size of the member <tt/xcoord/
1475     in struct <tt/Point/.
1476
1477     <tag><tt/.sizeof(P)/</tag>
1478     will have the value 4, this is the size of the data declared on the same
1479     source line as the label <tt/P/, which is in the same segment that <tt/P/
1480     is relative to.
1481
1482     <tag><tt/.sizeof(@P)/</tag>
1483     will have the value 4, see above. The example demonstrates that <tt/.SIZEOF/
1484     does also work for cheap local symbols.
1485
1486     <tag><tt/.sizeof(Code)/</tag>
1487     will have the value 3, since this is amount of data emitted into the code
1488     segment, the segment that was active when <tt/Code/ was entered. Note that
1489     this value includes the amount of data emitted in child scopes (in this
1490     case <tt/Code::Inner/).
1491
1492     <tag><tt/.sizeof(Code::Inner)/</tag>
1493     will have the value 1 as expected.
1494
1495     <tag><tt/.sizeof(Data)/</tag>
1496     will have the value 0. Data is emitted within the scope <tt/Data/, but since
1497     the segment is switched after entry, this data is emitted into another
1498     segment.
1499   </descrip>
1500
1501
1502 <sect1><tt>.STRAT</tt><label id=".STRAT"><p>
1503
1504   Builtin function. The function accepts a string and an index as
1505   arguments and returns the value of the character at the given position
1506   as an integer value. The index is zero based.
1507
1508   Example:
1509
1510   <tscreen><verb>
1511         .macro  M       Arg
1512                 ; Check if the argument string starts with '#'
1513                 .if (.strat (Arg, 0) = '#')
1514                 ...
1515                 .endif
1516         .endmacro
1517   </verb></tscreen>
1518
1519
1520 <sect1><tt>.SPRINTF</tt><label id=".SPRINTF"><p>
1521
1522   Builtin function. It expects a format string as first argument. The number
1523   and type of the following arguments depend on the format string. The format
1524   string is similar to the one of the C <tt/printf/ function. Missing things
1525   are: Length modifiers, variable width.
1526
1527   The result of the function is a string.
1528
1529   Example:
1530
1531   <tscreen><verb>
1532         num     = 3
1533
1534         ; Generate an identifier:
1535         .ident (.sprintf ("%s%03d", "label", num)):
1536   </verb></tscreen>
1537
1538
1539 <sect1><tt>.STRING</tt><label id=".STRING"><p>
1540
1541   Builtin function. The function accepts an argument in braces and converts
1542   this argument into a string constant. The argument may be an identifier, or
1543   a constant numeric value.
1544
1545   Since you can use a string in the first place, the use of the function may
1546   not be obvious. However, it is useful in macros, or more complex setups.
1547
1548   Example:
1549
1550   <tscreen><verb>
1551         ; Emulate other assemblers:
1552         .macro  section name
1553                 .segment        .string(name)
1554         .endmacro
1555   </verb></tscreen>
1556
1557
1558 <sect1><tt>.STRLEN</tt><label id=".STRLEN"><p>
1559
1560   Builtin function. The function accepts a string argument in braces and
1561   evaluates to the length of the string.
1562
1563   Example:
1564
1565   The following macro encodes a string as a pascal style string with
1566   a leading length byte.
1567
1568   <tscreen><verb>
1569         .macro  PString Arg
1570                 .byte   .strlen(Arg), Arg
1571         .endmacro
1572   </verb></tscreen>
1573
1574
1575 <sect1><tt>.TCOUNT</tt><label id=".TCOUNT"><p>
1576
1577   Builtin function. The function accepts a token list in braces. The function
1578   result is the number of tokens given as argument. The token list may
1579   optionally be enclosed into curly braces which are not considered part of
1580   the list and not counted. Enclosement in curly braces allows the inclusion
1581   of tokens that would otherwise terminate the list (the closing right paren
1582   in the given case).
1583
1584   Example:
1585
1586   The <tt/ldax/ macro accepts the '#' token to denote immediate addressing (as
1587   with the normal 6502 instructions). To translate it into two separate 8 bit
1588   load instructions, the '#' token has to get stripped from the argument:
1589
1590   <tscreen><verb>
1591         .macro  ldax    arg
1592                 .if (.match (.mid (0, 1, {arg}), #))
1593                 ; ldax called with immediate operand
1594                 lda     #<(.right (.tcount ({arg})-1, {arg}))
1595                 ldx     #>(.right (.tcount ({arg})-1, {arg}))
1596                 .else
1597                 ...
1598                 .endif
1599         .endmacro
1600   </verb></tscreen>
1601
1602
1603 <sect1><tt>.XMATCH</tt><label id=".XMATCH"><p>
1604
1605   Builtin function. Matches two token lists against each other. This is
1606   most useful within macros, since macros are not stored as strings, but
1607   as lists of tokens.
1608
1609   The syntax is
1610
1611   <tscreen><verb>
1612         .XMATCH(&lt;token list #1&gt;, &lt;token list #2&gt;)
1613   </verb></tscreen>
1614
1615   Both token list may contain arbitrary tokens with the exception of the
1616   terminator token (comma resp. right parenthesis) and
1617
1618   <itemize>
1619   <item>end-of-line
1620   <item>end-of-file
1621   </itemize>
1622
1623   The token lists may optionally be enclosed into curly braces. This allows
1624   the inclusion of tokens that would otherwise terminate the list (the closing
1625   right paren in the given case). Often a macro parameter is used for any of
1626   the token lists.
1627
1628   The function compares tokens <em/and/ token values. If you need a function
1629   that just compares the type of tokens, have a look at the <tt><ref
1630   id=".MATCH" name=".MATCH"></tt> function.
1631
1632   See: <tt><ref id=".MATCH" name=".MATCH"></tt>
1633
1634
1635
1636 <sect>Control commands<label id="control-commands"><p>
1637
1638 Here's a list of all control commands and a description, what they do:
1639
1640
1641 <sect1><tt>.A16</tt><label id=".A16"><p>
1642
1643   Valid only in 65816 mode. Switch the accumulator to 16 bit.
1644
1645   Note: This command will not emit any code, it will tell the assembler to
1646   create 16 bit operands for immediate accumulator addressing mode.
1647
1648   See also: <tt><ref id=".SMART" name=".SMART"></tt>
1649
1650
1651 <sect1><tt>.A8</tt><label id=".A8"><p>
1652
1653   Valid only in 65816 mode. Switch the accumulator to 8 bit.
1654
1655   Note: This command will not emit any code, it will tell the assembler to
1656   create 8 bit operands for immediate accu addressing mode.
1657
1658   See also: <tt><ref id=".SMART" name=".SMART"></tt>
1659
1660
1661 <sect1><tt>.ADDR</tt><label id=".ADDR"><p>
1662
1663   Define word sized data. In 6502 mode, this is an alias for <tt/.WORD/ and
1664   may be used for better readability if the data words are address values. In
1665   65816 mode, the address is forced to be 16 bit wide to fit into the current
1666   segment. See also <tt><ref id=".FARADDR" name=".FARADDR"></tt>. The command
1667   must be followed by a sequence of (not necessarily constant) expressions.
1668
1669   Example:
1670
1671   <tscreen><verb>
1672         .addr   $0D00, $AF13, _Clear
1673   </verb></tscreen>
1674
1675   See: <tt><ref id=".FARADDR" name=".FARADDR"></tt>, <tt><ref id=".WORD"
1676        name=".WORD"></tt>
1677
1678
1679 <sect1><tt>.ALIGN</tt><label id=".ALIGN"><p>
1680
1681   Align data to a given boundary. The command expects a constant integer
1682   argument that must be a power of two, plus an optional second argument
1683   in byte range. If there is a second argument, it is used as fill value,
1684   otherwise the value defined in the linker configuration file is used
1685   (the default for this value is zero).
1686
1687   Since alignment depends on the base address of the module, you must
1688   give the same (or a greater) alignment for the segment when linking.
1689   The linker will give you a warning, if you don't do that.
1690
1691   Example:
1692
1693   <tscreen><verb>
1694         .align  256
1695   </verb></tscreen>
1696
1697
1698 <sect1><tt>.ASCIIZ</tt><label id=".ASCIIZ"><p>
1699
1700   Define a string with a trailing zero.
1701
1702   Example:
1703
1704   <tscreen><verb>
1705         Msg:    .asciiz "Hello world"
1706   </verb></tscreen>
1707
1708   This will put the string "Hello world" followed by a binary zero into
1709   the current segment. There may be more strings separated by commas, but
1710   the binary zero is only appended once (after the last one).
1711
1712
1713 <sect1><tt>.ASSERT</tt><label id=".ASSERT"><p>
1714
1715   Add an assertion. The command is followed by an expression, an action
1716   specifier, and an optional message that is output in case the assertion
1717   fails. If no message was given, the string "Assertion failed" is used. The
1718   action specifier may be one of <tt/warning/ or <tt/error/. The assertion is
1719   evaluated by the assembler if possible, and also passed to the linker in the
1720   object file (if one is generated). The linker will then evaluate the
1721   expression when segment placement has been done.
1722
1723   Example:
1724
1725   <tscreen><verb>
1726         .assert         * = $8000, error, "Code not at $8000"
1727   </verb></tscreen>
1728
1729   The example assertion will check that the current location is at $8000,
1730   when the output file is written, and abort with an error if this is not
1731   the case. More complex expressions are possible. The action specifier
1732   <tt/warning/ outputs a warning, while the <tt/error/ specifier outputs
1733   an error message. In the latter case, generation if the output file is
1734   suppressed in both the assembler and linker.
1735
1736
1737 <sect1><tt>.AUTOIMPORT</tt><label id=".AUTOIMPORT"><p>
1738
1739   Is followed by a plus or a minus character. When switched on (using a
1740   +), undefined symbols are automatically marked as import instead of
1741   giving errors. When switched off (which is the default so this does not
1742   make much sense), this does not happen and an error message is
1743   displayed. The state of the autoimport flag is evaluated when the
1744   complete source was translated, before outputting actual code, so it is
1745   <em/not/ possible to switch this feature on or off for separate sections
1746   of code. The last setting is used for all symbols.
1747
1748   You should probably not use this switch because it delays error
1749   messages about undefined symbols until the link stage. The cc65
1750   compiler (which is supposed to produce correct assembler code in all
1751   circumstances, something which is not true for most assembler
1752   programmers) will insert this command to avoid importing each and every
1753   routine from the runtime library.
1754
1755   Example:
1756
1757   <tscreen><verb>
1758         .autoimport     +       ; Switch on auto import
1759   </verb></tscreen>
1760
1761
1762 <sect1><tt>.BSS</tt><label id=".BSS"><p>
1763
1764   Switch to the BSS segment. The name of the BSS segment is always "BSS",
1765   so this is a shortcut for
1766
1767   <tscreen><verb>
1768         .segment  "BSS"
1769   </verb></tscreen>
1770
1771   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
1772
1773
1774 <sect1><tt>.BYT, .BYTE</tt><label id=".BYTE"><p>
1775
1776   Define byte sized data. Must be followed by a sequence of (byte ranged)
1777   expressions or strings.
1778
1779   Example:
1780
1781   <tscreen><verb>
1782         .byte   "Hello "
1783         .byt    "world", $0D, $00
1784   </verb></tscreen>
1785
1786
1787 <sect1><tt>.CASE</tt><label id=".CASE"><p>
1788
1789   Switch on or off case sensitivity on identifiers. The default is off
1790   (that is, identifiers are case sensitive), but may be changed by the
1791   -i switch on the command line.
1792   The command must be followed by a '+' or '-' character to switch the
1793   option on or off respectively.
1794
1795   Example:
1796
1797   <tscreen><verb>
1798         .case   -               ; Identifiers are not case sensitive
1799   </verb></tscreen>
1800
1801
1802 <sect1><tt>.CHARMAP</tt><label id=".CHARMAP"><p>
1803
1804   Apply a custom mapping for characters. The command is followed by two
1805   numbers in the range 1..255. The first one is the index of the source
1806   character, the second one is the mapping. The mapping applies to all
1807   character and string constants when they generate output, and overrides
1808   a mapping table specified with the <tt><ref id="option-t" name="-t"></tt>
1809   command line switch.
1810
1811   Example:
1812
1813   <tscreen><verb>
1814         .charmap        $41, $61        ; Map 'A' to 'a'
1815   </verb></tscreen>
1816
1817
1818 <sect1><tt>.CODE</tt><label id=".CODE"><p>
1819
1820   Switch to the CODE segment. The name of the CODE segment is always
1821   "CODE", so this is a shortcut for
1822
1823   <tscreen><verb>
1824         .segment  "CODE"
1825   </verb></tscreen>
1826
1827   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
1828
1829
1830 <sect1><tt>.CONDES</tt><label id=".CONDES"><p>
1831
1832   Export a symbol and mark it in a special way. The linker is able to build
1833   tables of all such symbols. This may be used to automatically create a list
1834   of functions needed to initialize linked library modules.
1835
1836   Note: The linker has a feature to build a table of marked routines, but it
1837   is your code that must call these routines, so just declaring a symbol with
1838   <tt/.CONDES/ does nothing by itself.
1839
1840   All symbols are exported as an absolute (16 bit) symbol. You don't need to
1841   use an additional <tt><ref id=".EXPORT" name=".EXPORT"></tt> statement, this
1842   is implied by <tt/.CONDES/.
1843
1844   <tt/.CONDES/ is followed by the type, which may be <tt/constructor/,
1845   <tt/destructor/ or a numeric value between 0 and 6 (where 0 is the same as
1846   specifying <tt/constructor/ and 1 is equal to specifying <tt/destructor/).
1847   The <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
1848   id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
1849   name=".INTERRUPTOR"></tt> commands are actually shortcuts for <tt/.CONDES/
1850   with a type of <tt/constructor/ resp. <tt/destructor/ or <tt/interruptor/.
1851
1852   After the type, an optional priority may be specified. Higher numeric values
1853   mean higher priority. If no priority is given, the default priority of 7 is
1854   used. Be careful when assigning priorities to your own module constructors
1855   so they won't interfere with the ones in the cc65 library.
1856
1857   Example:
1858
1859   <tscreen><verb>
1860         .condes         ModuleInit, constructor
1861         .condes         ModInit, 0, 16
1862   </verb></tscreen>
1863
1864   See the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
1865   id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
1866   name=".INTERRUPTOR"></tt> commands and the separate section <ref id="condes"
1867   name="Module constructors/destructors"> explaining the feature in more
1868   detail.
1869
1870
1871 <sect1><tt>.CONSTRUCTOR</tt><label id=".CONSTRUCTOR"><p>
1872
1873   Export a symbol and mark it as a module constructor. This may be used
1874   together with the linker to build a table of constructor subroutines that
1875   are called by the startup code.
1876
1877   Note: The linker has a feature to build a table of marked routines, but it
1878   is your code that must call these routines, so just declaring a symbol as
1879   constructor does nothing by itself.
1880
1881   A constructor is always exported as an absolute (16 bit) symbol. You don't
1882   need to use an additional <tt/.export/ statement, this is implied by
1883   <tt/.constructor/. It may have an optional priority that is separated by a
1884   comma. Higher numeric values mean a higher priority. If no priority is
1885   given, the default priority of 7 is used. Be careful when assigning
1886   priorities to your own module constructors so they won't interfere with the
1887   ones in the cc65 library.
1888
1889   Example:
1890
1891   <tscreen><verb>
1892         .constructor    ModuleInit
1893         .constructor    ModInit, 16
1894   </verb></tscreen>
1895
1896   See the <tt><ref id=".CONDES" name=".CONDES"></tt> and <tt><ref
1897   id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> commands and the separate section
1898   <ref id="condes" name="Module constructors/destructors"> explaining the
1899   feature in more detail.
1900
1901
1902 <sect1><tt>.DATA</tt><label id=".DATA"><p>
1903
1904   Switch to the DATA segment. The name of the DATA segment is always
1905   "DATA", so this is a shortcut for
1906
1907   <tscreen><verb>
1908         .segment  "DATA"
1909   </verb></tscreen>
1910
1911   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
1912
1913
1914 <sect1><tt>.DBYT</tt><label id=".DBYT"><p>
1915
1916   Define word sized data with the hi and lo bytes swapped (use <tt/.WORD/ to
1917   create word sized data in native 65XX format). Must be followed by a
1918   sequence of (word ranged) expressions.
1919
1920   Example:
1921
1922   <tscreen><verb>
1923         .dbyt   $1234, $4512
1924   </verb></tscreen>
1925
1926   This will emit the bytes
1927
1928   <tscreen><verb>
1929         $12 $34 $45 $12
1930   </verb></tscreen>
1931
1932   into the current segment in that order.
1933
1934
1935 <sect1><tt>.DEBUGINFO</tt><label id=".DEBUGINFO"><p>
1936
1937   Switch on or off debug info generation. The default is off (that is,
1938   the object file will not contain debug infos), but may be changed by the
1939   -g switch on the command line.
1940   The command must be followed by a '+' or '-' character to switch the
1941   option on or off respectively.
1942
1943   Example:
1944
1945   <tscreen><verb>
1946         .debuginfo      +       ; Generate debug info
1947   </verb></tscreen>
1948
1949
1950 <sect1><tt>.DEFINE</tt><label id=".DEFINE"><p>
1951
1952   Start a define style macro definition. The command is followed by an
1953   identifier (the macro name) and optionally by a list of formal arguments
1954   in braces.
1955   See section <ref id="macros" name="Macros">.
1956
1957
1958 <sect1><tt>.DEF, .DEFINED</tt><label id=".DEFINED"><p>
1959
1960   Builtin function. The function expects an identifier as argument in braces.
1961   The argument is evaluated, and the function yields "true" if the identifier
1962   is a symbol that is already defined somewhere in the source file up to the
1963   current position. Otherwise the function yields false. As an example, the
1964   <tt><ref id=".IFDEF" name=".IFDEF"></tt> statement may be replaced by
1965
1966   <tscreen><verb>
1967         .if     .defined(a)
1968   </verb></tscreen>
1969
1970
1971 <sect1><tt>.DESTRUCTOR</tt><label id=".DESTRUCTOR"><p>
1972
1973   Export a symbol and mark it as a module destructor. This may be used
1974   together with the linker to build a table of destructor subroutines that
1975   are called by the startup code.
1976
1977   Note: The linker has a feature to build a table of marked routines, but it
1978   is your code that must call these routines, so just declaring a symbol as
1979   constructor does nothing by itself.
1980
1981   A destructor is always exported as an absolute (16 bit) symbol. You don't
1982   need to use an additional <tt/.export/ statement, this is implied by
1983   <tt/.destructor/. It may have an optional priority that is separated by a
1984   comma. Higher numerical values mean a higher priority. If no priority is
1985   given, the default priority of 7 is used. Be careful when assigning
1986   priorities to your own module destructors so they won't interfere with the
1987   ones in the cc65 library.
1988
1989   Example:
1990
1991   <tscreen><verb>
1992         .destructor     ModuleDone
1993         .destructor     ModDone, 16
1994   </verb></tscreen>
1995
1996   See the <tt><ref id=".CONDES" name=".CONDES"></tt> and <tt><ref
1997   id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt> commands and the separate
1998   section <ref id="condes" name="Module constructors/destructors"> explaining
1999   the feature in more detail.
2000
2001
2002 <sect1><tt>.DWORD</tt><label id=".DWORD"><p>
2003
2004   Define dword sized data (4 bytes) Must be followed by a sequence of
2005   expressions.
2006
2007   Example:
2008
2009   <tscreen><verb>
2010         .dword  $12344512, $12FA489
2011   </verb></tscreen>
2012
2013
2014 <sect1><tt>.ELSE</tt><label id=".ELSE"><p>
2015
2016   Conditional assembly: Reverse the current condition.
2017
2018
2019 <sect1><tt>.ELSEIF</tt><label id=".ELSEIF"><p>
2020
2021   Conditional assembly: Reverse current condition and test a new one.
2022
2023
2024 <sect1><tt>.END</tt><label id=".END"><p>
2025
2026   Forced end of assembly. Assembly stops at this point, even if the command
2027   is read from an include file.
2028
2029
2030 <sect1><tt>.ENDENUM</tt><label id=".ENDENUM"><p>
2031
2032   End a <tt><ref id=".ENUM" name=".ENUM"></tt> declaration.
2033
2034
2035 <sect1><tt>.ENDIF</tt><label id=".ENDIF"><p>
2036
2037   Conditional assembly: Close a <tt><ref id=".IF" name=".IF..."></tt> or
2038   <tt><ref id=".ELSE" name=".ELSE"></tt> branch.
2039
2040
2041 <sect1><tt>.ENDMAC, .ENDMACRO</tt><label id=".ENDMACRO"><p>
2042
2043   End of macro definition (see section <ref id="macros" name="Macros">).
2044
2045
2046 <sect1><tt>.ENDPROC</tt><label id=".ENDPROC"><p>
2047
2048   End of local lexical level (see <tt><ref id=".PROC" name=".PROC"></tt>).
2049
2050
2051 <sect1><tt>.ENDREP, .ENDREPEAT</tt><label id=".ENDREPEAT"><p>
2052
2053   End a <tt><ref id=".REPEAT" name=".REPEAT"></tt> block.
2054
2055
2056 <sect1><tt>.ENDSCOPE</tt><label id=".ENDSCOPE"><p>
2057
2058   End of local lexical level (see <tt/<ref id=".SCOPE" name=".SCOPE">/).
2059
2060
2061 <sect1><tt>.ENDSTRUCT</tt><label id=".ENDSTRUCT"><p>
2062
2063   Ends a struct definition. See the <tt/<ref id=".STRUCT" name=".STRUCT">/
2064   command and the separate section named <ref id="structs" name="&quot;Structs
2065   and unions&quot;">.
2066
2067
2068 <sect1><tt>.ENUM</tt><label id=".ENUM"><p>
2069
2070   Start an enumeration. This directive is very similar to the C <tt/enum/
2071   keyword. If a name is given, a new scope is created for the enumeration,
2072   otherwise the enumeration members are placed in the enclosing scope.
2073
2074   In the enumeration body, symbols are declared. The first symbol has a value
2075   of zero, and each following symbol will get the value of the preceding plus
2076   one. This behaviour may be overridden by an explicit assignment. Two symbols
2077   may have the same value.
2078
2079   Example:
2080
2081   <tscreen><verb>
2082         .enum   errorcodes
2083                 no_error
2084                 file_error
2085                 parse_error
2086         .endenum
2087   </verb></tscreen>
2088
2089   Above example will create a new scope named <tt/errorcodes/ with three
2090   symbols in it that get the values 0, 1 and 2 respectively. Another way
2091   to write this would have been:
2092
2093   <tscreen><verb>
2094         .scope  errorcodes
2095                 no_error        = 0
2096                 file_error      = 1
2097                 parse_error     = 2
2098         .endscope
2099   </verb></tscreen>
2100
2101   Please note that explicit scoping must be used to access the identifiers:
2102
2103   <tscreen><verb>
2104         .word   errorcodes::no_error
2105   </verb></tscreen>
2106
2107   A more complex example:
2108
2109   <tscreen><verb>
2110         .enum
2111                 EUNKNOWN        = -1
2112                 EOK
2113                 EFILE
2114                 EBUSY
2115                 EAGAIN
2116                 EWOULDBLOCK     = EAGAIN
2117         .endenum
2118   </verb></tscreen>
2119
2120   In this example, the enumeration does not have a name, which means that the
2121   members will be visible in the enclosing scope and can be used in this scope
2122   without explicit scoping. The first member (<tt/EUNKNOWN/) has the value -1.
2123   The value for the following members is incremented by one, so <tt/EOK/ would
2124   be zero and so on. <tt/EWOULDBLOCK/ is an alias for <tt/EGAIN/, so it has an
2125   override for the value using an already defined symbol.
2126
2127
2128 <sect1><tt>.ERROR</tt><label id=".ERROR"><p>
2129
2130   Force an assembly error. The assembler will output an error message
2131   preceded by "User error" and will <em/not/ produce an object file.
2132
2133   This command may be used to check for initial conditions that must be
2134   set before assembling a source file.
2135
2136   Example:
2137
2138   <tscreen><verb>
2139         .if     foo = 1
2140         ...
2141         .elseif bar = 1
2142         ...
2143         .else
2144         .error  "Must define foo or bar!"
2145         .endif
2146   </verb></tscreen>
2147
2148   See also the <tt><ref id=".WARNING" name=".WARNING"></tt> and <tt><ref
2149   id=".OUT" name=".OUT"></tt> directives.
2150
2151
2152 <sect1><tt>.EXITMAC, .EXITMACRO</tt><label id=".EXITMACRO"><p>
2153
2154   Abort a macro expansion immediately. This command is often useful in
2155   recursive macros. See separate section <ref id="macros" name="Macros">.
2156
2157
2158 <sect1><tt>.EXPORT</tt><label id=".EXPORT"><p>
2159
2160   Make symbols accessible from other modules. Must be followed by a comma
2161   separated list of symbols to export, with each one optionally followed by an
2162   address specification and (also optional) an assignment. Using an additional
2163   assignment in the export statement allows to define and export a symbol in
2164   one statement. The default is to export the symbol with the address size it
2165   actually has. The assembler will issue a warning, if the symbol is exported
2166   with an address size smaller than the actual address size.
2167
2168   Examples:
2169
2170   <tscreen><verb>
2171         .export foo
2172         .export bar: far
2173         .export foobar: far = foo * bar
2174         .export baz := foobar, zap: far = baz - bar
2175   </verb></tscreen>
2176
2177   As with constant definitions, using <tt/:=/ instead of <tt/=/ marks the
2178   symbols as a label.
2179
2180   See: <tt><ref id=".EXPORTZP" name=".EXPORTZP"></tt>
2181
2182
2183 <sect1><tt>.EXPORTZP</tt><label id=".EXPORTZP"><p>
2184
2185   Make symbols accessible from other modules. Must be followed by a comma
2186   separated list of symbols to export. The exported symbols are explicitly
2187   marked as zero page symbols. An assignment may be included in the
2188   <tt/.EXPORTZP/ statement. This allows to define and export a symbol in one
2189   statement.
2190
2191   Examples:
2192
2193   <tscreen><verb>
2194         .exportzp  foo, bar
2195         .exportzp  baz := &dollar;02
2196   </verb></tscreen>
2197
2198   See: <tt><ref id=".EXPORT" name=".EXPORT"></tt>
2199
2200
2201 <sect1><tt>.FARADDR</tt><label id=".FARADDR"><p>
2202
2203   Define far (24 bit) address data. The command must be followed by a
2204   sequence of (not necessarily constant) expressions.
2205
2206   Example:
2207
2208   <tscreen><verb>
2209         .faraddr        DrawCircle, DrawRectangle, DrawHexagon
2210   </verb></tscreen>
2211
2212   See: <tt><ref id=".ADDR" name=".ADDR"></tt>
2213
2214
2215 <sect1><tt>.FEATURE</tt><label id=".FEATURE"><p>
2216
2217   This directive may be used to enable one or more compatibility features
2218   of the assembler. While the use of <tt/.FEATURE/ should be avoided when
2219   possible, it may be useful when porting sources written for other
2220   assemblers. There is no way to switch a feature off, once you have
2221   enabled it, so using
2222
2223   <tscreen><verb>
2224         .FEATURE        xxx
2225   </verb></tscreen>
2226
2227   will enable the feature until end of assembly is reached.
2228
2229   The following features are available:
2230
2231   <descrip>
2232
2233   <tag><tt>at_in_identifiers</tt></tag>
2234
2235     Accept the at character (`@') as a valid character in identifiers. The
2236     at character is not allowed to start an identifier, even with this
2237     feature enabled.
2238
2239   <tag><tt>dollar_in_identifiers</tt></tag>
2240
2241     Accept the dollar sign (`&dollar;') as a valid character in identifiers. The
2242     at character is not allowed to start an identifier, even with this
2243     feature enabled.
2244
2245   <tag><tt>dollar_is_pc</tt></tag>
2246
2247     The dollar sign may be used as an alias for the star (`*'), which
2248     gives the value of the current PC in expressions.
2249     Note: Assignment to the pseudo variable is not allowed.
2250
2251   <tag><tt>labels_without_colons</tt></tag>
2252
2253     Allow labels without a trailing colon. These labels are only accepted,
2254     if they start at the beginning of a line (no leading white space).
2255
2256   <tag><tt>leading_dot_in_identifiers</tt></tag>
2257
2258     Accept the dot (`.') as the first character of an identifier. This may be
2259     used for example to create macro names that start with a dot emulating
2260     control directives of other assemblers. Note however, that none of the
2261     reserved keywords built into the assembler, that starts with a dot, may be
2262     overridden. When using this feature, you may also get into trouble if
2263     later versions of the assembler define new keywords starting with a dot.
2264
2265   <tag><tt>loose_char_term</tt></tag>
2266
2267     Accept single quotes as well as double quotes as terminators for char
2268     constants.
2269
2270   <tag><tt>loose_string_term</tt></tag>
2271
2272     Accept single quotes as well as double quotes as terminators for string
2273     constants.
2274
2275   <tag><tt>missing_char_term</tt></tag>
2276
2277     Accept single quoted character constants where the terminating quote is
2278     missing.
2279     <tscreen><verb>
2280         lda     #'a
2281     </verb></tscreen>
2282     <bf/Note:/ This does not work in conjunction with <tt/.FEATURE
2283     loose_string_term/, since in this case the input would be ambiguous.
2284
2285   <tag><tt>org_per_seg</tt><label id="org_per_seg"></tag>
2286
2287     This feature makes relocatable/absolute mode local to the current segment.
2288     Using <tt><ref id=".ORG" name=".ORG"></tt> when <tt/org_per_seg/ is in
2289     effect will only enable absolute mode for the current segment. Dito for
2290     <tt><ref id=".RELOC" name=".RELOC"></tt>.
2291
2292   <tag><tt>pc_assignment</tt></tag>
2293
2294     Allow assignments to the PC symbol (`*' or `&dollar;' if <tt/dollar_is_pc/
2295     is enabled). Such an assignment is handled identical to the <tt><ref
2296     id=".ORG" name=".ORG"></tt> command (which is usually not needed, so just
2297     removing the lines with the assignments may also be an option when porting
2298     code written for older assemblers).
2299
2300   <tag><tt>ubiquitous_idents</tt></tag>
2301
2302     Allow the use of instructions names as names for macros and symbols. This
2303     makes it possible to "overload" instructions by defining a macro with the
2304     same name. This does also make it possible to introduce hard to find errors
2305     in your code, so be careful!
2306
2307   </descrip>
2308
2309   It is also possible to specify features on the command line using the
2310   <tt><ref id="option--feature" name="--feature"></tt> command line option.
2311   This is useful when translating sources written for older assemblers, when
2312   you don't want to change the source code.
2313
2314   As an example, to translate sources written for Andre Fachats xa65
2315   assembler, the features
2316
2317   <verb>
2318         labels_without_colons, pc_assignment, loose_char_term
2319   </verb>
2320
2321   may be helpful. They do not make ca65 completely compatible, so you may not
2322   be able to translate the sources without changes, even when enabling these
2323   features. However, I have found several sources that translate without
2324   problems when enabling these features on the command line.
2325
2326
2327 <sect1><tt>.FILEOPT, .FOPT</tt><label id=".FOPT"><p>
2328
2329   Insert an option string into the object file. There are two forms of
2330   this command, one specifies the option by a keyword, the second
2331   specifies it as a number. Since usage of the second one needs knowledge
2332   of the internal encoding, its use is not recommended and I will only
2333   describe the first form here.
2334
2335   The command is followed by one of the keywords
2336
2337   <tscreen><verb>
2338         author
2339         comment
2340         compiler
2341   </verb></tscreen>
2342
2343   a comma and a string. The option is written into the object file
2344   together with the string value. This is currently unidirectional and
2345   there is no way to actually use these options once they are in the
2346   object file.
2347
2348   Examples:
2349
2350   <tscreen><verb>
2351         .fileopt        comment, "Code stolen from my brother"
2352         .fileopt        compiler, "BASIC 2.0"
2353         .fopt           author, "J. R. User"
2354   </verb></tscreen>
2355
2356
2357 <sect1><tt>.FORCEIMPORT</tt><label id=".FORCEIMPORT"><p>
2358
2359   Import an absolute symbol from another module. The command is followed by a
2360   comma separated list of symbols to import. The command is similar to <tt>
2361   <ref id=".IMPORT" name=".IMPORT"></tt>, but the import reference is always
2362   written to the generated object file, even if the symbol is never referenced
2363   (<tt><ref id=".IMPORT" name=".IMPORT"></tt> will not generate import
2364   references for unused symbols).
2365
2366   Example:
2367
2368   <tscreen><verb>
2369         .forceimport    needthisone, needthistoo
2370   </verb></tscreen>
2371
2372   See: <tt><ref id=".IMPORT" name=".IMPORT"></tt>
2373
2374
2375 <sect1><tt>.GLOBAL</tt><label id=".GLOBAL"><p>
2376
2377   Declare symbols as global. Must be followed by a comma separated list of
2378   symbols to declare. Symbols from the list, that are defined somewhere in the
2379   source, are exported, all others are imported. Additional <tt><ref
2380   id=".IMPORT" name=".IMPORT"></tt> or <tt><ref id=".EXPORT"
2381   name=".EXPORT"></tt> commands for the same symbol are allowed.
2382
2383   Example:
2384
2385   <tscreen><verb>
2386         .global foo, bar
2387   </verb></tscreen>
2388
2389
2390 <sect1><tt>.GLOBALZP</tt><label id=".GLOBALZP"><p>
2391
2392   Declare symbols as global. Must be followed by a comma separated list of
2393   symbols to declare. Symbols from the list, that are defined somewhere in the
2394   source, are exported, all others are imported. Additional <tt><ref
2395   id=".IMPORTZP" name=".IMPORTZP"></tt> or <tt><ref id=".EXPORTZP"
2396   name=".EXPORTZP"></tt> commands for the same symbol are allowed. The symbols
2397   in the list are explicitly marked as zero page symbols.
2398
2399   Example:
2400
2401   <tscreen><verb>
2402         .globalzp foo, bar
2403   </verb></tscreen>
2404
2405
2406 <sect1><tt>.I16</tt><label id=".I16"><p>
2407
2408   Valid only in 65816 mode. Switch the index registers to 16 bit.
2409
2410   Note: This command will not emit any code, it will tell the assembler to
2411   create 16 bit operands for immediate operands.
2412
2413   See also the <tt><ref id=".I8" name=".I8"></tt> and <tt><ref id=".SMART"
2414   name=".SMART"></tt> commands.
2415
2416
2417 <sect1><tt>.I8</tt><label id=".I8"><p>
2418
2419   Valid only in 65816 mode. Switch the index registers to 8 bit.
2420
2421   Note: This command will not emit any code, it will tell the assembler to
2422   create 8 bit operands for immediate operands.
2423
2424   See also the <tt><ref id=".I16" name=".I16"></tt> and <tt><ref id=".SMART"
2425   name=".SMART"></tt> commands.
2426
2427
2428 <sect1><tt>.IF</tt><label id=".IF"><p>
2429
2430   Conditional assembly: Evaluate an expression and switch assembler output
2431   on or off depending on the expression. The expression must be a constant
2432   expression, that is, all operands must be defined.
2433
2434   A expression value of zero evaluates to FALSE, any other value evaluates
2435   to TRUE.
2436
2437
2438 <sect1><tt>.IFBLANK</tt><label id=".IFBLANK"><p>
2439
2440   Conditional assembly: Check if there are any remaining tokens in this line,
2441   and evaluate to FALSE if this is the case, and to TRUE otherwise. If the
2442   condition is not true, further lines are not assembled until an <tt><ref
2443   id=".ELSE" name=".ESLE"></tt>, <tt><ref id=".ELSEIF" name=".ELSEIF"></tt> or
2444   <tt><ref id=".ENDIF" name=".ENDIF"></tt> directive.
2445
2446   This command is often used to check if a macro parameter was given. Since an
2447   empty macro parameter will evaluate to nothing, the condition will evaluate
2448   to FALSE if an empty parameter was given.
2449
2450   Example:
2451
2452   <tscreen><verb>
2453         .macro     arg1, arg2
2454         .ifblank   arg2
2455                    lda     #arg1
2456         .else
2457                    lda     #arg2
2458         .endif
2459         .endmacro
2460   </verb></tscreen>
2461
2462   See also: <tt><ref id=".BLANK" name=".BLANK"></tt>
2463
2464
2465 <sect1><tt>.IFCONST</tt><label id=".IFCONST"><p>
2466
2467   Conditional assembly: Evaluate an expression and switch assembler output
2468   on or off depending on the constness of the expression.
2469
2470   A const expression evaluates to to TRUE, a non const expression (one
2471   containing an imported or currently undefined symbol) evaluates to
2472   FALSE.
2473
2474   See also: <tt><ref id=".CONST" name=".CONST"></tt>
2475
2476
2477 <sect1><tt>.IFDEF</tt><label id=".IFDEF"><p>
2478
2479   Conditional assembly: Check if a symbol is defined. Must be followed by
2480   a symbol name. The condition is true if the the given symbol is already
2481   defined, and false otherwise.
2482
2483   See also: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
2484
2485
2486 <sect1><tt>.IFNBLANK</tt><label id=".IFNBLANK"><p>
2487
2488   Conditional assembly: Check if there are any remaining tokens in this line,
2489   and evaluate to TRUE if this is the case, and to FALSE otherwise. If the
2490   condition is not true, further lines are not assembled until an <tt><ref
2491   id=".ELSE" name=".ELSE"></tt>, <tt><ref id=".ELSEIF" name=".ELSEIF"></tt> or
2492   <tt><ref id=".ENDIF" name=".ENDIF"></tt> directive.
2493
2494   This command is often used to check if a macro parameter was given.
2495   Since an empty macro parameter will evaluate to nothing, the condition
2496   will evaluate to FALSE if an empty parameter was given.
2497
2498   Example:
2499
2500   <tscreen><verb>
2501         .macro     arg1, arg2
2502                    lda     #arg1
2503         .ifnblank  arg2
2504                    lda     #arg2
2505         .endif
2506         .endmacro
2507   </verb></tscreen>
2508
2509   See also: <tt><ref id=".BLANK" name=".BLANK"></tt>
2510
2511
2512 <sect1><tt>.IFNDEF</tt><label id=".IFNDEF"><p>
2513
2514   Conditional assembly: Check if a symbol is defined. Must be followed by
2515   a symbol name. The condition is true if the the given symbol is not
2516   defined, and false otherwise.
2517
2518   See also: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
2519
2520
2521 <sect1><tt>.IFNREF</tt><label id=".IFNREF"><p>
2522
2523   Conditional assembly: Check if a symbol is referenced. Must be followed
2524   by a symbol name. The condition is true if if the the given symbol was
2525   not referenced before, and false otherwise.
2526
2527   See also: <tt><ref id=".REFERENCED" name=".REFERENCED"></tt>
2528
2529
2530 <sect1><tt>.IFP02</tt><label id=".IFP02"><p>
2531
2532   Conditional assembly: Check if the assembler is currently in 6502 mode
2533   (see <tt><ref id=".P02" name=".P02"></tt> command).
2534
2535
2536 <sect1><tt>.IFP816</tt><label id=".IFP816"><p>
2537
2538   Conditional assembly: Check if the assembler is currently in 65816 mode
2539   (see <tt><ref id=".P816" name=".P816"></tt> command).
2540
2541
2542 <sect1><tt>.IFPC02</tt><label id=".IFPC02"><p>
2543
2544   Conditional assembly: Check if the assembler is currently in 65C02 mode
2545   (see <tt><ref id=".PC02" name=".PC02"></tt> command).
2546
2547
2548 <sect1><tt>.IFPSC02</tt><label id=".IFPSC02"><p>
2549
2550   Conditional assembly: Check if the assembler is currently in 65SC02 mode
2551   (see <tt><ref id=".PSC02" name=".PSC02"></tt> command).
2552
2553
2554 <sect1><tt>.IFREF</tt><label id=".IFREF"><p>
2555
2556   Conditional assembly: Check if a symbol is referenced. Must be followed
2557   by a symbol name. The condition is true if if the the given symbol was
2558   referenced before, and false otherwise.
2559
2560   This command may be used to build subroutine libraries in include files
2561   (you may use separate object modules for this purpose too).
2562
2563   Example:
2564
2565   <tscreen><verb>
2566         .ifref  ToHex                   ; If someone used this subroutine
2567         ToHex:  tay                     ; Define subroutine
2568                 lda     HexTab,y
2569                 rts
2570         .endif
2571   </verb></tscreen>
2572
2573   See also: <tt><ref id=".REFERENCED" name=".REFERENCED"></tt>
2574
2575
2576 <sect1><tt>.IMPORT</tt><label id=".IMPORT"><p>
2577
2578   Import a symbol from another module. The command is followed by a comma
2579   separated list of symbols to import, with each one optionally followed by
2580   an address specification.
2581
2582   Example:
2583
2584   <tscreen><verb>
2585         .import foo
2586         .import bar: zeropage
2587   </verb></tscreen>
2588
2589   See: <tt><ref id=".IMPORTZP" name=".IMPORTZP"></tt>
2590
2591
2592 <sect1><tt>.IMPORTZP</tt><label id=".IMPORTZP"><p>
2593
2594   Import a symbol from another module. The command is followed by a comma
2595   separated list of symbols to import. The symbols are explicitly imported
2596   as zero page symbols (that is, symbols with values in byte range).
2597
2598   Example:
2599
2600   <tscreen><verb>
2601         .importzp       foo, bar
2602   </verb></tscreen>
2603
2604   See: <tt><ref id=".IMPORT" name=".IMPORT"></tt>
2605
2606
2607 <sect1><tt>.INCBIN</tt><label id=".INCBIN"><p>
2608
2609   Include a file as binary data. The command expects a string argument
2610   that is the name of a file to include literally in the current segment.
2611   In addition to that, a start offset and a size value may be specified,
2612   separated by commas. If no size is specified, all of the file from the
2613   start offset to end-of-file is used. If no start position is specified
2614   either, zero is assumed (which means that the whole file is inserted).
2615
2616   Example:
2617
2618   <tscreen><verb>
2619         ; Include whole file
2620         .incbin         "sprites.dat"
2621
2622         ; Include file starting at offset 256
2623         .incbin         "music.dat", $100
2624
2625         ; Read 100 bytes starting at offset 200
2626         .incbin         "graphics.dat", 200, 100
2627   </verb></tscreen>
2628
2629
2630 <sect1><tt>.INCLUDE</tt><label id=".INCLUDE"><p>
2631
2632   Include another file. Include files may be nested up to a depth of 16.
2633
2634   Example:
2635
2636   <tscreen><verb>
2637         .include        "subs.inc"
2638   </verb></tscreen>
2639
2640
2641 <sect1><tt>.INTERRUPTOR</tt><label id=".INTERRUPTOR"><p>
2642
2643   Export a symbol and mark it as an interruptor. This may be used together
2644   with the linker to build a table of interruptor subroutines that are called
2645   in an interrupt.
2646
2647   Note: The linker has a feature to build a table of marked routines, but it
2648   is your code that must call these routines, so just declaring a symbol as
2649   interruptor does nothing by itself.
2650
2651   An interruptor is always exported as an absolute (16 bit) symbol. You don't
2652   need to use an additional <tt/.export/ statement, this is implied by
2653   <tt/.interruptor/. It may have an optional priority that is separated by a
2654   comma. Higher numeric values mean a higher priority. If no priority is
2655   given, the default priority of 7 is used. Be careful when assigning
2656   priorities to your own module constructors so they won't interfere with the
2657   ones in the cc65 library.
2658
2659   Example:
2660
2661   <tscreen><verb>
2662         .interruptor    IrqHandler
2663         .interruptor    Handler, 16
2664   </verb></tscreen>
2665
2666   See the <tt><ref id=".CONDES" name=".CONDES"></tt> command and the separate
2667   section <ref id="condes" name="Module constructors/destructors"> explaining
2668   the feature in more detail.
2669
2670
2671 <sect1><tt>.LINECONT</tt><label id=".LINECONT"><p>
2672
2673   Switch on or off line continuations using the backslash character
2674   before a newline. The option is off by default.
2675   Note: Line continuations do not work in a comment. A backslash at the
2676   end of a comment is treated as part of the comment and does not trigger
2677   line continuation.
2678   The command must be followed by a '+' or '-' character to switch the
2679   option on or off respectively.
2680
2681   Example:
2682
2683   <tscreen><verb>
2684         .linecont       +               ; Allow line continuations
2685
2686         lda     \
2687                 #$20                    ; This is legal now
2688   </verb></tscreen>
2689
2690
2691 <sect1><tt>.LIST</tt><label id=".LIST"><p>
2692
2693   Enable output to the listing. The command must be followed by a boolean
2694   switch ("on", "off", "+" or "-") and will enable or disable listing
2695   output.
2696   The option has no effect if the listing is not enabled by the command line
2697   switch -l. If -l is used, an internal counter is set to 1. Lines are output
2698   to the listing file, if the counter is greater than zero, and suppressed if
2699   the counter is zero. Each use of <tt/.LIST/ will increment or decrement the
2700   counter.
2701
2702   Example:
2703
2704   <tscreen><verb>
2705         .list   on              ; Enable listing output
2706   </verb></tscreen>
2707
2708
2709 <sect1><tt>.LISTBYTES</tt><label id=".LISTBYTES"><p>
2710
2711   Set, how many bytes are shown in the listing for one source line. The
2712   default is 12, so the listing will show only the first 12 bytes for any
2713   source line that generates more than 12 bytes of code or data.
2714   The directive needs an argument, which is either "unlimited", or an
2715   integer constant in the range 4..255.
2716
2717   Examples:
2718
2719   <tscreen><verb>
2720         .listbytes      unlimited       ; List all bytes
2721         .listbytes      12              ; List the first 12 bytes
2722         .incbin         "data.bin"      ; Include large binary file
2723   </verb></tscreen>
2724
2725
2726 <sect1><tt>.LOCAL</tt><label id=".LOCAL"><p>
2727
2728   This command may only be used inside a macro definition. It declares a
2729   list of identifiers as local to the macro expansion.
2730
2731   A problem when using macros are labels: Since they don't change their name,
2732   you get a "duplicate symbol" error if the macro is expanded the second time.
2733   Labels declared with <tt><ref id=".LOCAL" name=".LOCAL"></tt> have their
2734   name mapped to an internal unique name (<tt/___ABCD__/) with each macro
2735   invocation.
2736
2737   Some other assemblers start a new lexical block inside a macro expansion.
2738   This has some drawbacks however, since that will not allow <em/any/ symbol
2739   to be visible outside a macro, a feature that is sometimes useful. The
2740   <tt><ref id=".LOCAL" name=".LOCAL"></tt> command is in my eyes a better way
2741   to address the problem.
2742
2743   You get an error when using <tt><ref id=".LOCAL" name=".LOCAL"></tt> outside
2744   a macro.
2745
2746
2747 <sect1><tt>.LOCALCHAR</tt><label id=".LOCALCHAR"><p>
2748
2749   Defines the character that start "cheap" local labels. You may use one
2750   of '@' and '?' as start character. The default is '@'.
2751
2752   Cheap local labels are labels that are visible only between two non
2753   cheap labels. This way you can reuse identifiers like "<tt/loop/" without
2754   using explicit lexical nesting.
2755
2756   Example:
2757
2758   <tscreen><verb>
2759         .localchar      '?'
2760
2761         Clear:  lda     #$00            ; Global label
2762         ?Loop:  sta     Mem,y           ; Local label
2763                 dey
2764                 bne     ?Loop           ; Ok
2765                 rts
2766         Sub:    ...                     ; New global label
2767                 bne     ?Loop           ; ERROR: Unknown identifier!
2768   </verb></tscreen>
2769
2770
2771 <sect1><tt>.MACPACK</tt><label id=".MACPACK"><p>
2772
2773   Insert a predefined macro package. The command is followed by an
2774   identifier specifying the macro package to insert. Available macro
2775   packages are:
2776
2777   <tscreen><verb>
2778         atari           Defines the scrcode macro.
2779         cbm             Defines the scrcode macro.
2780         cpu             Defines constants for the .CPU variable.
2781         generic         Defines generic macros like add and sub.
2782         longbranch      Defines conditional long jump macros.
2783   </verb></tscreen>
2784
2785   Including a macro package twice, or including a macro package that
2786   redefines already existing macros will lead to an error.
2787
2788   Example:
2789
2790   <tscreen><verb>
2791         .macpack        longbranch      ; Include macro package
2792
2793                 cmp     #$20            ; Set condition codes
2794                 jne     Label           ; Jump long on condition
2795   </verb></tscreen>
2796
2797   Macro packages are explained in more detail in section <ref
2798   id="macropackages" name="Macro packages">.
2799
2800
2801 <sect1><tt>.MAC, .MACRO</tt><label id=".MAC"><p>
2802
2803   Start a classic macro definition. The command is followed by an identifier
2804   (the macro name) and optionally by a comma separated list of identifiers
2805   that are macro parameters.
2806
2807   See section <ref id="macros" name="Macros">.
2808
2809
2810 <sect1><tt>.ORG</tt><label id=".ORG"><p>
2811
2812   Start a section of absolute code. The command is followed by a constant
2813   expression that gives the new PC counter location for which the code is
2814   assembled. Use <tt><ref id=".RELOC" name=".RELOC"></tt> to switch back to
2815   relocatable code.
2816
2817   By default, absolute/relocatable mode is global (valid even when switching
2818   segments). Using <tt>.FEATURE <ref id="org_per_seg" name="org_per_seg"></tt>
2819   it can be made segment local.
2820
2821   Please note that you <em/do not need/ <tt/.ORG/ in most cases. Placing
2822   code at a specific address is the job of the linker, not the assembler, so
2823   there is usually no reason to assemble code to a specific address.
2824
2825   Example:
2826
2827   <tscreen><verb>
2828         .org    $7FF            ; Emit code starting at $7FF
2829   </verb></tscreen>
2830
2831
2832 <sect1><tt>.OUT</tt><label id=".OUT"><p>
2833
2834   Output a string to the console without producing an error. This command
2835   is similar to <tt/.ERROR/, however, it does not force an assembler error
2836   that prevents the creation of an object file.
2837
2838   Example:
2839
2840   <tscreen><verb>
2841         .out    "This code was written by the codebuster(tm)"
2842   </verb></tscreen>
2843
2844   See also the <tt><ref id=".WARNING" name=".WARNING"></tt> and <tt><ref
2845   id=".ERROR" name=".ERROR"></tt> directives.
2846
2847
2848 <sect1><tt>.P02</tt><label id=".P02"><p>
2849
2850   Enable the 6502 instruction set, disable 65SC02, 65C02 and 65816
2851   instructions. This is the default if not overridden by the
2852   <tt><ref id="option--cpu" name="--cpu"></tt> command line option.
2853
2854   See: <tt><ref id=".PC02" name=".PC02"></tt>, <tt><ref id=".PSC02"
2855   name=".PSC02"></tt> and <tt><ref id=".P816" name=".P816"></tt>
2856
2857
2858 <sect1><tt>.P816</tt><label id=".P816"><p>
2859
2860   Enable the 65816 instruction set. This is a superset of the 65SC02 and
2861   6502 instruction sets.
2862
2863   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PSC02"
2864   name=".PSC02"></tt> and <tt><ref id=".PC02" name=".PC02"></tt>
2865
2866
2867 <sect1><tt>.PAGELEN, .PAGELENGTH</tt><label id=".PAGELENGTH"><p>
2868
2869   Set the page length for the listing. Must be followed by an integer
2870   constant. The value may be "unlimited", or in the range 32 to 127. The
2871   statement has no effect if no listing is generated. The default value is -1
2872   (unlimited) but may be overridden by the <tt/--pagelength/ command line
2873   option. Beware: Since ca65 is a one pass assembler, the listing is generated
2874   after assembly is complete, you cannot use multiple line lengths with one
2875   source. Instead, the value set with the last <tt/.PAGELENGTH/ is used.
2876
2877   Examples:
2878
2879   <tscreen><verb>
2880         .pagelength     66              ; Use 66 lines per listing page
2881
2882         .pagelength     unlimited       ; Unlimited page length
2883   </verb></tscreen>
2884
2885
2886 <sect1><tt>.PC02</tt><label id=".PC02"><p>
2887
2888   Enable the 65C02 instructions set. This instruction set includes all
2889   6502 and 65SC02 instructions.
2890
2891   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PSC02"
2892   name=".PSC02"></tt> and <tt><ref id=".P816" name=".P816"></tt>
2893
2894
2895 <sect1><tt>.POPSEG</tt><label id=".POPSEG"><p>
2896
2897   Pop the last pushed segment from the stack, and set it.
2898
2899   This command will switch back to the segment that was last pushed onto the
2900   segment stack using the <tt><ref id=".PUSHSEG" name=".PUSHSEG"></tt>
2901   command, and remove this entry from the stack.
2902
2903   The assembler will print an error message if the segment stack is empty
2904   when this command is issued.
2905
2906   See: <tt><ref id=".PUSHSEG" name=".PUSHSEG"></tt>
2907
2908
2909 <sect1><tt>.PROC</tt><label id=".PROC"><p>
2910
2911   Start a nested lexical level with the given name and adds a symbol with this
2912   name to the enclosing scope. All new symbols from now on are in the local
2913   lexical level and are accessible from outside only via <ref id="scopesyntax"
2914   name="explicit scope specification">. Symbols defined outside this local
2915   level may be accessed as long as their names are not used for new symbols
2916   inside the level. Symbols names in other lexical levels do not clash, so you
2917   may use the same names for identifiers. The lexical level ends when the
2918   <tt><ref id=".ENDPROC" name=".ENDPROC"></tt> command is read. Lexical levels
2919   may be nested up to a depth of 16 (this is an artificial limit to protect
2920   against errors in the source).
2921
2922   Note: Macro names are always in the global level and in a separate name
2923   space. There is no special reason for this, it's just that I've never
2924   had any need for local macro definitions.
2925
2926   Example:
2927
2928   <tscreen><verb>
2929         .proc   Clear           ; Define Clear subroutine, start new level
2930                 lda     #$00
2931         L1:     sta     Mem,y   ; L1 is local and does not cause a
2932                                 ; duplicate symbol error if used in other
2933                                 ; places
2934                 dey
2935                 bne     L1      ; Reference local symbol
2936                 rts
2937         .endproc                ; Leave lexical level
2938   </verb></tscreen>
2939
2940   See: <tt/<ref id=".ENDPROC" name=".ENDPROC">/ and <tt/<ref id=".SCOPE"
2941   name=".SCOPE">/
2942
2943
2944 <sect1><tt>.PSC02</tt><label id=".PSC02"><p>
2945
2946   Enable the 65SC02 instructions set. This instruction set includes all
2947   6502 instructions.
2948
2949   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PC02"
2950   name=".PC02"></tt> and <tt><ref id=".P816" name=".P816"></tt>
2951
2952
2953 <sect1><tt>.PUSHSEG</tt><label id=".PUSHSEG"><p>
2954
2955   Push the currently active segment onto a stack. The entries on the stack
2956   include the name of the segment and the segment type. The stack has a size
2957   of 16 entries.
2958
2959   <tt/.PUSHSEG/ allows together with <tt><ref id=".POPSEG" name=".POPSEG"></tt>
2960   to switch to another segment and to restore the old segment later, without
2961   even knowing the name and type of the current segment.
2962
2963   The assembler will print an error message if the segment stack is already
2964   full, when this command is issued.
2965
2966   See: <tt><ref id=".POPSEG" name=".POPSEG"></tt>
2967
2968
2969 <sect1><tt>.RELOC</tt><label id=".RELOC"><p>
2970
2971   Switch back to relocatable mode. See the <tt><ref id=".ORG"
2972   name=".ORG"></tt> command.
2973
2974
2975 <sect1><tt>.REPEAT</tt><label id=".REPEAT"><p>
2976
2977   Repeat all commands between <tt/.REPEAT/ and <tt><ref id=".ENDREPEAT"
2978   name=".ENDREPEAT"></tt> constant number of times. The command is followed by
2979   a constant expression that tells how many times the commands in the body
2980   should get repeated. Optionally, a comma and an identifier may be specified.
2981   If this identifier is found in the body of the repeat statement, it is
2982   replaced by the current repeat count (starting with zero for the first time
2983   the body is repeated).
2984
2985   <tt/.REPEAT/ statements may be nested. If you use the same repeat count
2986   identifier for a nested <tt/.REPEAT/ statement, the one from the inner
2987   level will be used, not the one from the outer level.
2988
2989   Example:
2990
2991   The following macro will emit a string that is "encrypted" in that all
2992   characters of the string are XORed by the value $55.
2993
2994   <tscreen><verb>
2995         .macro  Crypt   Arg
2996                 .repeat .strlen(Arg), I
2997                 .byte   .strat(Arg, I) ^ $55
2998                 .endrep
2999         .endmacro
3000   </verb></tscreen>
3001
3002   See: <tt><ref id=".ENDREPEAT" name=".ENDREPEAT"></tt>
3003
3004
3005 <sect1><tt>.RES</tt><label id=".RES"><p>
3006
3007   Reserve storage. The command is followed by one or two constant
3008   expressions. The first one is mandatory and defines, how many bytes of
3009   storage should be defined. The second, optional expression must by a
3010   constant byte value that will be used as value of the data. If there
3011   is no fill value given, the linker will use the value defined in the
3012   linker configuration file (default: zero).
3013
3014   Example:
3015
3016   <tscreen><verb>
3017         ; Reserve 12 bytes of memory with value $AA
3018         .res    12, $AA
3019   </verb></tscreen>
3020
3021
3022 <sect1><tt>.RODATA</tt><label id=".RODATA"><p>
3023
3024   Switch to the RODATA segment. The name of the RODATA segment is always
3025   "RODATA", so this is a shortcut for
3026
3027   <tscreen><verb>
3028         .segment  "RODATA"
3029   </verb></tscreen>
3030
3031   The RODATA segment is a segment that is used by the compiler for
3032   readonly data like string constants.
3033
3034   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
3035
3036
3037 <sect1><tt>.SCOPE</tt><label id=".SCOPE"><p>
3038
3039   Start a nested lexical level with the given name. All new symbols from now
3040   on are in the local lexical level and are accessible from outside only via
3041   <ref id="scopesyntax" name="explicit scope specification">. Symbols defined
3042   outside this local level may be accessed as long as their names are not used
3043   for new symbols inside the level. Symbols names in other lexical levels do
3044   not clash, so you may use the same names for identifiers. The lexical level
3045   ends when the <tt><ref id=".ENDSCOPE" name=".ENDSCOPE"></tt> command is
3046   read. Lexical levels may be nested up to a depth of 16 (this is an
3047   artificial limit to protect against errors in the source).
3048
3049   Note: Macro names are always in the global level and in a separate name
3050   space. There is no special reason for this, it's just that I've never
3051   had any need for local macro definitions.
3052
3053   Example:
3054
3055   <tscreen><verb>
3056         .scope  Error                   ; Start new scope named Error
3057                 None = 0                ; No error
3058                 File = 1                ; File error
3059                 Parse = 2               ; Parse error
3060         .endscope                       ; Close lexical level
3061
3062                 ...
3063                 lda #Error::File        ; Use symbol from scope Error
3064   </verb></tscreen>
3065
3066   See: <tt/<ref id=".ENDSCOPE" name=".ENDSCOPE">/ and <tt/<ref id=".PROC"
3067   name=".PROC">/
3068
3069
3070 <sect1><tt>.SEGMENT</tt><label id=".SEGMENT"><p>
3071
3072   Switch to another segment. Code and data is always emitted into a
3073   segment, that is, a named section of data. The default segment is
3074   "CODE". There may be up to 254 different segments per object file
3075   (and up to 65534 per executable). There are shortcut commands for
3076   the most common segments ("CODE", "DATA" and "BSS").
3077
3078   The command is followed by a string containing the segment name (there are
3079   some constraints for the name - as a rule of thumb use only those segment
3080   names that would also be valid identifiers). There may also be an optional
3081   address size separated by a colon. See the section covering <tt/<ref
3082   id="address-sizes" name="address sizes">/ for more information.
3083
3084   The default address size for a segment depends on the memory model specified
3085   on the command line. The default is "absolute", which means that you don't
3086   have to use an address size modifier in most cases.
3087
3088   "absolute" means that the is a segment with 16 bit (absolute) addressing.
3089   That is, the segment will reside somewhere in core memory outside the zero
3090   page. "zeropage" (8 bit) means that the segment will be placed in the zero
3091   page and direct (short) addressing is possible for data in this segment.
3092
3093   Beware: Only labels in a segment with the zeropage attribute are marked
3094   as reachable by short addressing. The `*' (PC counter) operator will
3095   work as in other segments and will create absolute variable values.
3096
3097   Please note that a segment cannot have two different address sizes. A
3098   segment specified as zeropage cannot be declared as being absolute later.
3099
3100   Examples:
3101
3102   <tscreen><verb>
3103         .segment "ROM2"                 ; Switch to ROM2 segment
3104         .segment "ZP2": zeropage        ; New direct segment
3105         .segment "ZP2"                  ; Ok, will use last attribute
3106         .segment "ZP2": absolute        ; Error, redecl mismatch
3107   </verb></tscreen>
3108
3109   See: <tt><ref id=".BSS" name=".BSS"></tt>, <tt><ref id=".CODE"
3110   name=".CODE"></tt>, <tt><ref id=".DATA" name=".DATA"></tt> and <tt><ref
3111   id=".RODATA" name=".RODATA"></tt>
3112
3113
3114 <sect1><tt>.SETCPU</tt><label id=".SETCPU"><p>
3115
3116   Switch the CPU instruction set. The command is followed by a string that
3117   specifies the CPU. Possible values are those that can also be supplied to
3118   the <tt><ref id="option--cpu" name="--cpu"></tt> command line option,
3119   namely: 6502, 6502X, 65SC02, 65C02, 65816, sunplus and HuC6280. Please
3120   note that support for the sunplus CPU is not available in the freeware
3121   version, because the instruction set of the sunplus CPU is "proprietary
3122   and confidential".
3123
3124   See: <tt><ref id=".CPU" name=".CPU"></tt>,
3125        <tt><ref id=".IFP02" name=".IFP02"></tt>,
3126        <tt><ref id=".IFP816" name=".IFP816"></tt>,
3127        <tt><ref id=".IFPC02" name=".IFPC02"></tt>,
3128        <tt><ref id=".IFPSC02" name=".IFPSC02"></tt>,
3129        <tt><ref id=".P02" name=".P02"></tt>,
3130        <tt><ref id=".P816" name=".P816"></tt>,
3131        <tt><ref id=".PC02" name=".PC02"></tt>,
3132        <tt><ref id=".PSC02" name=".PSC02"></tt>
3133
3134
3135 <sect1><tt>.SMART</tt><label id=".SMART"><p>
3136
3137   Switch on or off smart mode. The command must be followed by a '+' or '-'
3138   character to switch the option on or off respectively. The default is off
3139   (that is, the assembler doesn't try to be smart), but this default may be
3140   changed by the -s switch on the command line.
3141
3142   In smart mode the assembler will do the following:
3143
3144   <itemize>
3145   <item>Track usage of the <tt/REP/ and <tt/SEP/ instructions in 65816 mode
3146         and update the operand sizes accordingly. If the operand of such an
3147         instruction cannot be evaluated by the assembler (for example, because
3148         the operand is an imported symbol), a warning is issued. Beware: Since
3149         the assembler cannot trace the execution flow this may lead to false
3150         results in some cases. If in doubt, use the <tt/.Inn/ and <tt/.Ann/
3151         instructions to tell the assembler about the current settings.
3152   <item>In 65816 mode, replace a <tt/RTS/ instruction by <tt/RTL/ if it is
3153         used within a procedure declared as <tt/far/, or if the procedure has
3154         no explicit address specification, but it is <tt/far/ because of the
3155         memory model used.
3156   </itemize>
3157
3158   Example:
3159
3160   <tscreen><verb>
3161         .smart                          ; Be smart
3162         .smart  -                       ; Stop being smart
3163   </verb></tscreen>
3164
3165   See: <tt><ref id=".A16" name=".A16"></tt>,
3166        <tt><ref id=".A8" name=".A8"></tt>,
3167        <tt><ref id=".I16" name=".I16"></tt>,
3168        <tt><ref id=".I8" name=".I8"></tt>
3169
3170
3171 <sect1><tt>.STRUCT</tt><label id=".STRUCT"><p>
3172
3173   Starts a struct definition. Structs are covered in a separate section named
3174   <ref id="structs" name="&quot;Structs and unions&quot;">.
3175
3176   See: <tt><ref id=".ENDSTRUCT" name=".ENDSTRUCT"></tt>
3177
3178
3179 <sect1><tt>.SUNPLUS</tt><label id=".SUNPLUS"><p>
3180
3181   Enable the SunPlus instructions set. This command will not work in the
3182   freeware version of the assembler, because the instruction set is
3183   "proprietary and confidential".
3184
3185   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PSC02"
3186   name=".PSC02"></tt>, <tt><ref id=".PC02" name=".PC02"></tt>, and
3187   <tt><ref id=".P816" name=".P816"></tt>
3188
3189
3190 <sect1><tt>.TAG</tt><label id=".TAG"><p>
3191
3192   Allocate space for a struct or union.
3193
3194   Example:
3195
3196   <tscreen><verb>
3197         .struct Point
3198                 xcoord  .word
3199                 ycoord  .word
3200         .endstruct
3201
3202         .bss
3203                 .tag    Point           ; Allocate 4 bytes
3204   </verb></tscreen>
3205
3206
3207 <sect1><tt>.WARNING</tt><label id=".WARNING"><p>
3208
3209   Force an assembly warning. The assembler will output a warning message
3210   preceded by "User warning". This warning will always be output, even if
3211   other warnings are disabled with the <tt><ref id="option-W" name="-W0"></tt>
3212   command line option.
3213
3214   This command may be used to output possible problems when assembling
3215   the source file.
3216
3217   Example:
3218
3219   <tscreen><verb>
3220         .macro  jne     target
3221                 .local L1
3222                 .ifndef target
3223                 .warning "Forward jump in jne, cannot optimize!"
3224                 beq     L1
3225                 jmp     target
3226         L1:
3227                 .else
3228                 ...
3229                 .endif
3230         .endmacro
3231   </verb></tscreen>
3232
3233   See also the <tt><ref id=".ERROR" name=".ERROR"></tt> and <tt><ref id=".OUT"
3234   name=".OUT"></tt> directives.
3235
3236
3237 <sect1><tt>.WORD</tt><label id=".WORD"><p>
3238
3239   Define word sized data. Must be followed by a sequence of (word ranged,
3240   but not necessarily constant) expressions.
3241
3242   Example:
3243
3244   <tscreen><verb>
3245         .word   $0D00, $AF13, _Clear
3246   </verb></tscreen>
3247
3248
3249 <sect1><tt>.ZEROPAGE</tt><label id=".ZEROPAGE"><p>
3250
3251   Switch to the ZEROPAGE segment and mark it as direct (zeropage) segment.
3252   The name of the ZEROPAGE segment is always "ZEROPAGE", so this is a
3253   shortcut for
3254
3255   <tscreen><verb>
3256         .segment  "ZEROPAGE", zeropage
3257   </verb></tscreen>
3258
3259   Because of the "zeropage" attribute, labels declared in this segment are
3260   addressed using direct addressing mode if possible. You <em/must/ instruct
3261   the linker to place this segment somewhere in the address range 0..$FF
3262   otherwise you will get errors.
3263
3264   See: <tt><ref id=".SEGMENT" name=".SEGMENT"></tt>
3265
3266
3267
3268 <sect>Macros<label id="macros"><p>
3269
3270
3271 <sect1>Introduction<p>
3272
3273 Macros may be thought of as "parametrized super instructions". Macros are
3274 sequences of tokens that have a name. If that name is used in the source
3275 file, the macro is "expanded", that is, it is replaced by the tokens that
3276 were specified when the macro was defined.
3277
3278
3279 <sect1>Macros without parameters<p>
3280
3281 In it's simplest form, a macro does not have parameters. Here's an
3282 example:
3283
3284 <tscreen><verb>
3285         .macro  asr             ; Arithmetic shift right
3286                 cmp     #$80    ; Put bit 7 into carry
3287                 ror             ; Rotate right with carry
3288         .endmacro
3289 </verb></tscreen>
3290
3291 The macro above consists of two real instructions, that are inserted into
3292 the code, whenever the macro is expanded. Macro expansion is simply done
3293 by using the name, like this:
3294
3295 <tscreen><verb>
3296         lda     $2010
3297         asr
3298         sta     $2010
3299 </verb></tscreen>
3300
3301
3302 <sect1>Parametrized macros<p>
3303
3304 When using macro parameters, macros can be even more useful:
3305
3306 <tscreen><verb>
3307         .macro  inc16   addr
3308                 clc
3309                 lda     addr
3310                 adc     #$01
3311                 sta     addr
3312                 lda     addr+1
3313                 adc     #$00
3314                 sta     addr+1
3315         .endmacro
3316 </verb></tscreen>
3317
3318 When calling the macro, you may give a parameter, and each occurrence of
3319 the name "addr" in the macro definition will be replaced by the given
3320 parameter. So
3321
3322 <tscreen><verb>
3323         inc16   $1000
3324 </verb></tscreen>
3325
3326 will be expanded to
3327
3328 <tscreen><verb>
3329                 clc
3330                 lda     $1000
3331                 adc     #$01
3332                 sta     $1000
3333                 lda     $1000+1
3334                 adc     #$00
3335                 sta     $1000+1
3336 </verb></tscreen>
3337
3338 A macro may have more than one parameter, in this case, the parameters
3339 are separated by commas. You are free to give less parameters than the
3340 macro actually takes in the definition. You may also leave intermediate
3341 parameters empty. Empty parameters are replaced by empty space (that is,
3342 they are removed when the macro is expanded). If you have a look at our
3343 macro definition above, you will see, that replacing the "addr" parameter
3344 by nothing will lead to wrong code in most lines. To help you, writing
3345 macros with a variable parameter list, there are some control commands:
3346
3347 <tt><ref id=".IFBLANK" name=".IFBLANK"></tt> tests the rest of the line and
3348 returns true, if there are any tokens on the remainder of the line. Since
3349 empty parameters are replaced by nothing, this may be used to test if a given
3350 parameter is empty. <tt><ref id=".IFNBLANK" name=".IFNBLANK"></tt> tests the
3351 opposite.
3352
3353 Look at this example:
3354
3355 <tscreen><verb>
3356         .macro  ldaxy   a, x, y
3357         .ifnblank       a
3358                 lda     #a
3359         .endif
3360         .ifnblank       x
3361                 ldx     #x
3362         .endif
3363         .ifnblank       y
3364                 ldy     #y
3365         .endif
3366         .endmacro
3367 </verb></tscreen>
3368
3369 This macro may be called as follows:
3370
3371 <tscreen><verb>
3372         ldaxy   1, 2, 3         ; Load all three registers
3373
3374         ldaxy   1, , 3          ; Load only a and y
3375
3376         ldaxy   , , 3           ; Load y only
3377 </verb></tscreen>
3378
3379 There's another helper command for determining, which macro parameters are
3380 valid: <tt><ref id=".PARAMCOUNT" name=".PARAMCOUNT"></tt> This command is
3381 replaced by the parameter count given, <em/including/ intermediate empty macro
3382 parameters:
3383
3384 <tscreen><verb>
3385         ldaxy   1               ; .PARAMCOUNT = 1
3386         ldaxy   1,,3            ; .PARAMCOUNT = 3
3387         ldaxy   1,2             ; .PARAMCOUNT = 2
3388         ldaxy   1,              ; .PARAMCOUNT = 2
3389         ldaxy   1,2,3           ; .PARAMCOUNT = 3
3390 </verb></tscreen>
3391
3392 Macro parameters may optionally be enclosed into curly braces. This allows the
3393 inclusion of tokens that would otherwise terminate the parameter (the comma in
3394 case of a macro parameter).
3395
3396 <tscreen><verb>
3397         .macro  foo     arg1, arg2
3398                 ...
3399         .endmacro
3400
3401                 foo     ($00,x)         ; Two parameters passed
3402                 foo     {($00,x)}       ; One parameter passed
3403 </verb></tscreen>
3404
3405 In the first case, the macro is called with two parameters: '<tt/(&dollar;00/'
3406 and 'x)'. The comma is not passed to the macro, since it is part of the
3407 calling sequence, not the parameters.
3408
3409 In the second case, '(&dollar;00,x)' is passed to the macro, this time
3410 including the comma.
3411
3412
3413 <sect1>Detecting parameter types<p>
3414
3415 Sometimes it is nice to write a macro that acts differently depending on the
3416 type of the argument supplied. An example would be a macro that loads a 16 bit
3417 value from either an immediate operand, or from memory. The <tt/<ref
3418 id=".MATCH" name=".MATCH">/ and <tt/<ref id=".XMATCH" name=".XMATCH">/
3419 functions will allow you to do exactly this:
3420
3421 <tscreen><verb>
3422         .macro  ldax    arg
3423                 .if (.match (.left (1, {arg}), #))
3424                     ; immediate mode
3425                     lda     #<(.right (.tcount ({arg})-1, {arg}))
3426                     ldx     #>(.right (.tcount ({arg})-1, {arg}))
3427                 .else
3428                     ; assume absolute or zero page
3429                     lda     arg
3430                     ldx     1+(arg)
3431                 .endif
3432         .endmacro
3433 </verb></tscreen>
3434
3435 Using the <tt/<ref id=".MATCH" name=".MATCH">/ function, the macro is able to
3436 check if its argument begins with a hash mark. If so, two immediate loads are
3437 emitted, Otherwise a load from an absolute zero page memory location is
3438 assumed. Please note how the curly braces are used to enclose parameters to
3439 pseudo functions handling token lists. This is necessary, because the token
3440 lists may include commas or parens, which would be treated by the assembler
3441 as end-of-list.
3442
3443 The macro can be used as
3444
3445 <tscreen><verb>
3446         foo:    .word   $5678
3447         ...
3448                 ldax    #$1234          ; X=$12, A=$34
3449         ...
3450                 ldax    foo             ; X=$56, A=$78
3451 </verb></tscreen>
3452
3453
3454 <sect1>Recursive macros<p>
3455
3456 Macros may be used recursively:
3457
3458 <tscreen><verb>
3459         .macro  push    r1, r2, r3
3460                 lda     r1
3461                 pha
3462         .if     .paramcount > 1
3463                 push    r2, r3
3464         .endif
3465         .endmacro
3466 </verb></tscreen>
3467
3468 There's also a special macro to help writing recursive macros: <tt><ref
3469 id=".EXITMACRO" name=".EXITMACRO"></tt> This command will stop macro expansion
3470 immediately:
3471
3472 <tscreen><verb>
3473         .macro  push    r1, r2, r3, r4, r5, r6, r7
3474         .ifblank        r1
3475                 ; First parameter is empty
3476                 .exitmacro
3477         .else
3478                 lda     r1
3479                 pha
3480         .endif
3481                 push    r2, r3, r4, r5, r6, r7
3482         .endmacro
3483 </verb></tscreen>
3484
3485 When expanding this macro, the expansion will push all given parameters
3486 until an empty one is encountered. The macro may be called like this:
3487
3488 <tscreen><verb>
3489         push    $20, $21, $32           ; Push 3 ZP locations
3490         push    $21                     ; Push one ZP location
3491 </verb></tscreen>
3492
3493
3494 <sect1>Local symbols inside macros<p>
3495
3496 Now, with recursive macros, <tt><ref id=".IFBLANK" name=".IFBLANK"></tt> and
3497 <tt><ref id=".PARAMCOUNT" name=".PARAMCOUNT"></tt>, what else do you need?
3498 Have a look at the inc16 macro above. Here is it again:
3499
3500 <tscreen><verb>
3501         .macro  inc16   addr
3502                 clc
3503                 lda     addr
3504                 adc     #$01
3505                 sta     addr
3506                 lda     addr+1
3507                 adc     #$00
3508                 sta     addr+1
3509         .endmacro
3510 </verb></tscreen>
3511
3512 If you have a closer look at the code, you will notice, that it could be
3513 written more efficiently, like this:
3514
3515 <tscreen><verb>
3516         .macro  inc16   addr
3517                 inc     addr
3518                 bne     Skip
3519                 inc     addr+1
3520         Skip:
3521         .endmacro
3522 </verb></tscreen>
3523
3524 But imagine what happens, if you use this macro twice? Since the label
3525 "Skip" has the same name both times, you get a "duplicate symbol" error.
3526 Without a way to circumvent this problem, macros are not as useful, as
3527 they could be. One solution is, to start a new lexical block inside the
3528 macro:
3529
3530 <tscreen><verb>
3531         .macro  inc16   addr
3532         .proc
3533                 inc     addr
3534                 bne     Skip
3535                 inc     addr+1
3536         Skip:
3537         .endproc
3538         .endmacro
3539 </verb></tscreen>
3540
3541 Now the label is local to the block and not visible outside. However,
3542 sometimes you want a label inside the macro to be visible outside. To make
3543 that possible, there's a new command that's only usable inside a macro
3544 definition: <tt><ref id=".LOCAL" name=".LOCAL"></tt>. <tt/.LOCAL/ declares one
3545 or more symbols as local to the macro expansion. The names of local variables
3546 are replaced by a unique name in each separate macro expansion. So we could
3547 also solve the problem above by using <tt/.LOCAL/:
3548
3549 <tscreen><verb>
3550         .macro  inc16   addr
3551                 .local  Skip            ; Make Skip a local symbol
3552                 clc
3553                 lda     addr
3554                 adc     #$01
3555                 sta     addr
3556                 bcc     Skip
3557                 inc     addr+1
3558         Skip:                           ; Not visible outside
3559         .endmacro
3560 </verb></tscreen>
3561
3562
3563 <sect1>C style macros<p>
3564
3565 Starting with version 2.5 of the assembler, there is a second macro type
3566 available: C style macros using the <tt/.DEFINE/ directive. These macros are
3567 similar to the classic macro type described above, but behaviour is sometimes
3568 different:
3569
3570 <itemize>
3571
3572 <item>  Macros defined with <tt><ref id=".DEFINE" name=".DEFINE"></tt> may not
3573         span more than a line. You may use line continuation (see <tt><ref
3574         id=".LINECONT" name=".LINECONT"></tt>) to spread the definition over
3575         more than one line for increased readability, but the macro itself
3576         may not contain an end-of-line token.
3577
3578 <item>  Macros defined with <tt><ref id=".DEFINE" name=".DEFINE"></tt> share
3579         the name space with classic macros, but they are detected and replaced
3580         at the scanner level. While classic macros may be used in every place,
3581         where a mnemonic or other directive is allowed, <tt><ref id=".DEFINE"
3582         name=".DEFINE"></tt> style macros are allowed anywhere in a line. So
3583         they are more versatile in some situations.
3584
3585 <item>  <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros may take
3586         parameters. While classic macros may have empty parameters, this is
3587         not true for <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros.
3588         For this macro type, the number of actual parameters must match
3589         exactly the number of formal parameters.
3590
3591         To make this possible, formal parameters are enclosed in braces when
3592         defining the macro. If there are no parameters, the empty braces may
3593         be omitted.
3594
3595 <item>  Since <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros may not
3596         contain end-of-line tokens, there are things that cannot be done. They
3597         may not contain several processor instructions for example. So, while
3598         some things may be done with both macro types, each type has special
3599         usages. The types complement each other.
3600
3601 </itemize>
3602
3603 Let's look at a few examples to make the advantages and disadvantages
3604 clear.
3605
3606 To emulate assemblers that use "<tt/EQU/" instead of "<tt/=/" you may use the
3607 following <tt/.DEFINE/:
3608
3609 <tscreen><verb>
3610         .define EQU     =
3611
3612         foo     EQU     $1234           ; This is accepted now
3613 </verb></tscreen>
3614
3615 You may use the directive to define string constants used elsewhere:
3616
3617 <tscreen><verb>
3618         ; Define the version number
3619         .define VERSION         "12.3a"
3620
3621         ; ... and use it
3622         .asciiz VERSION
3623 </verb></tscreen>
3624
3625 Macros with parameters may also be useful:
3626
3627 <tscreen><verb>
3628         .define DEBUG(message)  .out    message
3629
3630         DEBUG   "Assembling include file #3"
3631 </verb></tscreen>
3632
3633 Note that, while formal parameters have to be placed in braces, this is
3634 not true for the actual parameters. Beware: Since the assembler cannot
3635 detect the end of one parameter, only the first token is used. If you
3636 don't like that, use classic macros instead:
3637
3638 <tscreen><verb>
3639         .macro  message
3640                 .out    message
3641         .endmacro
3642 </verb></tscreen>
3643
3644 (This is an example where a problem can be solved with both macro types).
3645
3646
3647 <sect1>Characters in macros<p>
3648
3649 When using the <ref id="option-t" name="-t"> option, characters are translated
3650 into the target character set of the specific machine. However, this happens
3651 as late as possible. This means that strings are translated if they are part
3652 of a <tt><ref id=".BYTE" name=".BYTE"></tt> or <tt><ref id=".ASCIIZ"
3653 name=".ASCIIZ"></tt> command. Characters are translated as soon as they are
3654 used as part of an expression.
3655
3656 This behaviour is very intuitive outside of macros but may be confusing when
3657 doing more complex macros. If you compare characters against numeric values,
3658 be sure to take the translation into account.
3659
3660
3661
3662
3663 <sect>Macro packages<label id="macropackages"><p>
3664
3665 Using the <tt><ref id=".MACPACK" name=".MACPACK"></tt> directive, predefined
3666 macro packages may be included with just one command. Available macro packages
3667 are:
3668
3669
3670 <sect1><tt>.MACPACK generic</tt><p>
3671
3672 This macro package defines macros that are useful in almost any program.
3673 Currently, two macros are defined:
3674
3675 <tscreen><verb>
3676         .macro  add     Arg
3677                 clc
3678                 adc     Arg
3679         .endmacro
3680
3681         .macro  sub     Arg
3682                 sec
3683                 sbc     Arg
3684         .endmacro
3685 </verb></tscreen>
3686
3687
3688 <sect1><tt>.MACPACK longbranch</tt><p>
3689
3690 This macro package defines long conditional jumps. They are named like the
3691 short counterpart but with the 'b' replaced by a 'j'. Here is a sample
3692 definition for the "<tt/jeq/" macro, the other macros are built using the same
3693 scheme:
3694
3695 <tscreen><verb>
3696         .macro  jeq     Target
3697                 .if     .def(Target) .and ((*+2)-(Target) <= 127)
3698                 beq     Target
3699                 .else
3700                 bne     *+5
3701                 jmp     Target
3702                 .endif
3703         .endmacro
3704 </verb></tscreen>
3705
3706 All macros expand to a short branch, if the label is already defined (back
3707 jump) and is reachable with a short jump. Otherwise the macro expands to a
3708 conditional branch with the branch condition inverted, followed by an absolute
3709 jump to the actual branch target.
3710
3711 The package defines the following macros:
3712
3713 <tscreen><verb>
3714         jeq, jne, jmi, jpl, jcs, jcc, jvs, jvc
3715 </verb></tscreen>
3716
3717
3718
3719 <sect1><tt>.MACPACK cbm</tt><p>
3720
3721 The cbm macro package will define a macro named <tt/scrcode/. It takes a
3722 string as argument and places this string into memory translated into screen
3723 codes.
3724
3725
3726 <sect1><tt>.MACPACK cpu</tt><p>
3727
3728 This macro package does not define any macros but constants used to examine
3729 the value read from the <tt/<ref id=".CPU" name=".CPU">/ pseudo variable. For
3730 each supported CPU a constant similar to
3731
3732 <tscreen><verb>
3733     CPU_6502
3734     CPU_65SC02
3735     CPU_65C02
3736     CPU_65816
3737     CPU_SUNPLUS
3738     CPU_SWEET16
3739     CPU_HUC6280
3740 </verb></tscreen>
3741
3742 is defined. These constants may be used to determine the exact type of the
3743 currently enabled CPU. In addition to that, for each CPU instruction set,
3744 another constant is defined:
3745
3746 <tscreen><verb>
3747     CPU_ISET_6502
3748     CPU_ISET_65SC02
3749     CPU_ISET_65C02
3750     CPU_ISET_65816
3751     CPU_ISET_SUNPLUS
3752     CPU_ISET_SWEET16
3753     CPU_ISET_HUC6280
3754 </verb></tscreen>
3755
3756 The value read from the <tt/<ref id=".CPU" name=".CPU">/ pseudo variable may
3757 be checked with <tt/<ref id="operators" name=".BITAND">/ to determine if the
3758 currently enabled CPU supports a specific instruction set. For example the
3759 65C02 supports all instructions of the 65SC02 CPU, so it has the
3760 <tt/CPU_ISET_65SC02/ bit set in addition to its native <tt/CPU_ISET_65C02/
3761 bit. Using
3762
3763 <tscreen><verb>
3764         .if (.cpu .bitand CPU_ISET_65SC02)
3765                 lda     (sp)
3766         .else
3767                 ldy     #$00
3768                 lda     (sp),y
3769         .endif
3770 </verb></tscreen>
3771
3772 it is possible to determine if the
3773
3774 <tscreen><verb>
3775                 lda     (sp)
3776 </verb></tscreen>
3777
3778 instruction is supported, which is the case for the 65SC02, 65C02 and 65816
3779 CPUs (the latter two are upwards compatible to the 65SC02).
3780
3781
3782
3783 <sect>Predefined constants<label id="predefined-constants"><p>
3784
3785 For better orthogonality, the assembler defines similar symbols as the
3786 compiler, depending on the target system selected:
3787
3788 <itemize>
3789 <item><tt/__ACE__/ - Target system is <tt/ace/
3790 <item><tt/__APPLE2__/ - Target system is <tt/apple2/
3791 <item><tt/__APPLE2ENH__/ - Target system is <tt/apple2enh/
3792 <item><tt/__ATARI__/ - Target system is <tt/atari/
3793 <item><tt/__ATMOS__/ - Target system is <tt/atmos/
3794 <item><tt/__BBC__/ - Target system is <tt/bbc/
3795 <item><tt/__C128__/ - Target system is <tt/c128/
3796 <item><tt/__C16__/ - Target system is <tt/c16/
3797 <item><tt/__C64__/ - Target system is <tt/c64/
3798 <item><tt/__CBM__/ - Target is a Commodore system
3799 <item><tt/__CBM510__/ - Target system is <tt/cbm510/
3800 <item><tt/__CBM610__/ - Target system is <tt/cbm610/
3801 <item><tt/__GEOS__/ - Target system is <tt/geos/
3802 <item><tt/__LUNIX__/ - Target system is <tt/lunix/
3803 <item><tt/__NES__/ - Target system is <tt/nes/
3804 <item><tt/__PET__/ - Target system is <tt/pet/
3805 <item><tt/__PLUS4__/ - Target system is <tt/plus4/
3806 <item><tt/__SUPERVISION__/ - Target system is <tt/supervision/
3807 <item><tt/__VIC20__/ - Target system is <tt/vic20/
3808 </itemize>
3809
3810
3811 <sect>Structs and unions<label id="structs"><p>
3812
3813 <sect1>Overview<p>
3814
3815 Structs and unions are special forms of <ref id="scopes" name="scopes">.  They
3816 are to some degree comparable to their C counterparts. Both have a list of
3817 members. Each member allocates storage and may optionally have a name, which,
3818 in case of a struct, is the offset from the beginning and, in case of a union,
3819 is always zero.
3820
3821
3822 <sect1>Declaration<p>
3823
3824 Here is an example for a very simple struct with two members and a total size
3825 of 4 bytes:
3826
3827 <tscreen><verb>
3828       .struct Point
3829               xcoord  .word
3830               ycoord  .word
3831       .endstruct
3832 </verb></tscreen>
3833
3834 A union shares the total space between all its members, its size is the same
3835 as that of the largest member.
3836
3837 A struct or union must not necessarily have a name. If it is anonymous, no
3838 local scope is opened, the identifiers used to name the members are placed
3839 into the current scope instead.
3840
3841 A struct may contain unnamed members and definitions of local structs. The
3842 storage allocators may contain a multiplier, as in the example below:
3843
3844 <tscreen><verb>
3845       .struct Circle
3846               .struct Point
3847                       .word   2         ; Allocate two words
3848               .endstruct
3849               Radius  .word
3850       .endstruct
3851 </verb></tscreen>
3852
3853
3854 <sect1>The <tt/.TAG/ keyword<p>
3855
3856 Using the <ref id=".TAG" name=".TAG"> keyword, it is possible to reserve space
3857 for an already defined struct or unions within another struct:
3858
3859 <tscreen><verb>
3860       .struct Point
3861               xcoord  .word
3862               ycoord  .word
3863       .endstruct
3864
3865       .struct Circle
3866               Origin  .tag    Point
3867               Radius  .byte
3868       .endstruct
3869 </verb></tscreen>
3870
3871 Space for a struct or union may be allocated using the <ref id=".TAG"
3872 name=".TAG"> directive.
3873
3874 <tscreen><verb>
3875         C:      .tag    Circle
3876 </verb></tscreen>
3877
3878 Currently, members are just offsets from the start of the struct or union. To
3879 access a field of a struct, the member offset has to be added to the address
3880 of the struct itself:
3881
3882 <tscreen><verb>
3883         lda     C+Circle::Radius        ; Load circle radius into A
3884 </verb></tscreen>
3885
3886 This may change in a future version of the assembler.
3887
3888
3889 <sect1>Limitations<p>
3890
3891 Structs and unions are currently implemented as nested symbol tables (in fact,
3892 they were a by-product of the improved scoping rules). Currently, the
3893 assembler has no idea of types. This means that the <ref id=".TAG"
3894 name=".TAG"> keyword will only allocate space. You won't be able to initialize
3895 variables declared with <ref id=".TAG" name=".TAG">, and adding an embedded
3896 structure to another structure with <ref id=".TAG" name=".TAG"> will not make
3897 this structure accessible by using the '::' operator.
3898
3899
3900
3901 <sect>Module constructors/destructors<label id="condes"><p>
3902
3903 <em>Note:</em> This section applies mostly to C programs, so the explanation
3904 below uses examples from the C libraries. However, the feature may also be
3905 useful for assembler programs.
3906
3907
3908 <sect1>Overview<p>
3909
3910 Using the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
3911 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
3912 name=".INTERRUPTOR"></tt> keywords it it possible to export functions in a
3913 special way. The linker is able to generate tables with all functions of a
3914 specific type. Such a table will <em>only</em> include symbols from object
3915 files that are linked into a specific executable. This may be used to add
3916 initialization and cleanup code for library modules, or a table of interrupt
3917 handler functions.
3918
3919 The C heap functions are an example where module initialization code is used.
3920 All heap functions (<tt>malloc</tt>, <tt>free</tt>, ...) work with a few
3921 variables that contain the start and the end of the heap, pointers to the free
3922 list and so on. Since the end of the heap depends on the size and start of the
3923 stack, it must be initialized at runtime. However, initializing these
3924 variables for programs that do not use the heap are a waste of time and
3925 memory.
3926
3927 So the central module defines a function that contains initialization code and
3928 exports this function using the <tt/.CONSTRUCTOR/ statement. If (and only if)
3929 this module is added to an executable by the linker, the initialization
3930 function will be placed into the table of constructors by the linker. The C
3931 startup code will call all constructors before <tt/main/ and all destructors
3932 after <tt/main/, so without any further work, the heap initialization code is
3933 called once the module is linked in.
3934
3935 While it would be possible to add explicit calls to initialization functions
3936 in the startup code, the new approach has several advantages:
3937
3938 <enum>
3939 <item>
3940 If a module is not included, the initialization code is not linked in and not
3941 called. So you don't pay for things you don't need.
3942
3943 <item>
3944 Adding another library that needs initialization does not mean that the
3945 startup code has to be changed. Before we had module constructors and
3946 destructors, the startup code for all systems had to be adjusted to call the
3947 new initialization code.
3948
3949 <item>
3950 The feature saves memory: Each additional initialization function needs just
3951 two bytes in the table (a pointer to the function).
3952
3953 </enum>
3954
3955
3956 <sect1>Calling order<p>
3957
3958 The symbols are sorted in increasing priority order by the linker when using
3959 one of the builtin linker configurations, so the functions with lower
3960 priorities come first and are followed by those with higher priorities. The C
3961 library runtime subroutine that walks over the function tables calls the
3962 functions starting from the top of the table - which means that functions with
3963 a high priority are called first.
3964
3965 So when using the C runtime, functions are called with high priority functions
3966 first, followed by low priority functions.
3967
3968
3969 <sect1>Pitfalls<p>
3970
3971 When using these special symbols, please take care of the following:
3972
3973 <itemize>
3974
3975 <item>
3976 The linker will only generate function tables, it will not generate code to
3977 call these functions. If you're using the feature in some other than the
3978 existing C environments, you have to write code to call all functions in a
3979 linker generated table yourself. See the <tt/condes/ and <tt/callirq/ modules
3980 in the C runtime for an example on how to do this.
3981
3982 <item>
3983 The linker will only add addresses of functions that are in modules linked to
3984 the executable. This means that you have to be careful where to place the
3985 condes functions. If initialization or an irq handler is needed for a group of
3986 functions, be sure to place the function into a module that is linked in
3987 regardless of which function is called by the user.
3988
3989 <item>
3990 The linker will generate the tables only when requested to do so by the
3991 <tt/FEATURE CONDES/ statement in the linker config file. Each table has to
3992 be requested separately.
3993
3994 <item>
3995 Constructors and destructors may have priorities. These priorities determine
3996 the order of the functions in the table. If your initialization or cleanup code
3997 does depend on other initialization or cleanup code, you have to choose the
3998 priority for the functions accordingly.
3999
4000 <item>
4001 Besides the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
4002 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
4003 name=".INTERRUPTOR"></tt> statements, there is also a more generic command:
4004 <tt><ref id=".CONDES" name=".CONDES"></tt>. This allows to specify an
4005 additional type. Predefined types are 0 (constructor), 1 (destructor) and 2
4006 (interruptor). The linker generates a separate table for each type on request.
4007
4008 </itemize>
4009
4010
4011 <sect>Porting sources from other assemblers<p>
4012
4013 Sometimes it is necessary to port code written for older assemblers to ca65.
4014 In some cases, this can be done without any changes to the source code by
4015 using the emulation features of ca65 (see <tt><ref id=".FEATURE"
4016 name=".FEATURE"></tt>). In other cases, it is necessary to make changes to the
4017 source code.
4018
4019 Probably the biggest difference is the handling of the <tt><ref id=".ORG"
4020 name=".ORG"></tt> directive. ca65 generates relocatable code, and placement is
4021 done by the linker. Most other assemblers generate absolute code, placement is
4022 done within the assembler and there is no external linker.
4023
4024 In general it is not a good idea to write new code using the emulation
4025 features of the assembler, but there may be situations where even this rule is
4026 not valid.
4027
4028 <sect1>TASS<p>
4029
4030 You need to use some of the ca65 emulation features to simulate the behaviour
4031 of such simple assemblers.
4032
4033 <enum>
4034 <item>Prepare your sourcecode like this:
4035
4036 <tscreen><verb>
4037         ; if you want TASS style labels without colons
4038         .feature labels_without_colons
4039
4040         ; if you want TASS style character constants
4041         ; ("a" instead of the default 'a')
4042         .feature loose_char_term
4043
4044                 .word *+2       ; the cbm load address
4045
4046                 [yourcode here]
4047 </verb></tscreen>
4048
4049 notice that the two emulation features are mostly useful for porting
4050 sources originally written in/for TASS, they are not needed for the
4051 actual "simple assembler operation" and are not recommended if you are
4052 writing new code from scratch.
4053
4054 <item>Replace all program counter assignments (which are not possible in ca65
4055 by default, and the respective emulation feature works different from what
4056 you'd expect) by another way to skip to memory locations, for example the
4057 <tt><ref id=".RES" name=".RES"></tt> directive.
4058
4059 <tscreen><verb>
4060         ; *=$2000
4061         .res $2000-*    ; reserve memory up to $2000
4062 </verb></tscreen>
4063
4064 Please note that other than the original TASS, ca65 can never move the program
4065 counter backwards - think of it as if you are assembling to disk with TASS.
4066
4067 <item>Conditional assembly (<tt/.ifeq//<tt/.endif//<tt/.goto/ etc.) must be
4068 rewritten to match ca65 syntax. Most importantly notice that due to the lack
4069 of <tt/.goto/, everything involving loops must be replaced by
4070 <tt><ref id=".REPEAT" name=".REPEAT"></tt>.
4071
4072 <item>To assemble code to a different address than it is executed at, use the
4073 <tt><ref id=".ORG" name=".ORG"></tt> directive instead of
4074 <tt/.offs/-constructs.
4075
4076 <tscreen><verb>
4077         .org $1800
4078
4079         [floppy code here]
4080
4081         .reloc  ; back to normal
4082 </verb></tscreen>
4083
4084 <item>Then assemble like this:
4085
4086 <tscreen><verb>
4087         cl65 --start-addr 0x0ffe -t none myprog.s -o myprog.prg
4088 </verb></tscreen>
4089
4090 Note that you need to use the actual start address minus two, since two bytes
4091 are used for the cbm load address.
4092
4093 </enum>
4094
4095
4096 <sect>Bugs/Feedback<p>
4097
4098 If you have problems using the assembler, if you find any bugs, or if
4099 you're doing something interesting with the assembler, I would be glad to
4100 hear from you. Feel free to contact me by email
4101 (<htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">).
4102
4103
4104
4105 <sect>Copyright<p>
4106
4107 ca65 (and all cc65 binutils) are (C) Copyright 1998-2003 Ullrich von
4108 Bassewitz. For usage of the binaries and/or sources the following
4109 conditions do apply:
4110
4111 This software is provided 'as-is', without any expressed or implied
4112 warranty.  In no event will the authors be held liable for any damages
4113 arising from the use of this software.
4114
4115 Permission is granted to anyone to use this software for any purpose,
4116 including commercial applications, and to alter it and redistribute it
4117 freely, subject to the following restrictions:
4118
4119 <enum>
4120 <item>  The origin of this software must not be misrepresented; you must not
4121         claim that you wrote the original software. If you use this software
4122         in a product, an acknowledgment in the product documentation would be
4123         appreciated but is not required.
4124 <item>  Altered source versions must be plainly marked as such, and must not
4125         be misrepresented as being the original software.
4126 <item>  This notice may not be removed or altered from any source
4127         distribution.
4128 </enum>
4129
4130
4131
4132 </article>
4133
4134
4135