]> git.sur5r.net Git - cc65/blob - doc/ca65.sgml
Document the new c_comments feature.
[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>c_comments</tt></tag>
2240
2241     Allow C like comments using <tt>/*</tt> and <tt>*/</tt> as left and right
2242     comment terminators. Note that C comments may not be nested. There's also a
2243     pitfall when using C like comments: All statements must be terminated by
2244     "end-of-line". Using C like comments, it is possible to hide the newline,
2245     which results in error messages. See the following non working example:
2246
2247     <tscreen><verb>
2248         lda     #$00  /* This comment hides the newline
2249 */      sta     $82
2250     </verb></tscreen>
2251
2252   <tag><tt>dollar_in_identifiers</tt></tag>
2253
2254     Accept the dollar sign (`&dollar;') as a valid character in identifiers. The
2255     at character is not allowed to start an identifier, even with this
2256     feature enabled.
2257
2258   <tag><tt>dollar_is_pc</tt></tag>
2259
2260     The dollar sign may be used as an alias for the star (`*'), which
2261     gives the value of the current PC in expressions.
2262     Note: Assignment to the pseudo variable is not allowed.
2263
2264   <tag><tt>labels_without_colons</tt></tag>
2265
2266     Allow labels without a trailing colon. These labels are only accepted,
2267     if they start at the beginning of a line (no leading white space).
2268
2269   <tag><tt>leading_dot_in_identifiers</tt></tag>
2270
2271     Accept the dot (`.') as the first character of an identifier. This may be
2272     used for example to create macro names that start with a dot emulating
2273     control directives of other assemblers. Note however, that none of the
2274     reserved keywords built into the assembler, that starts with a dot, may be
2275     overridden. When using this feature, you may also get into trouble if
2276     later versions of the assembler define new keywords starting with a dot.
2277
2278   <tag><tt>loose_char_term</tt></tag>
2279
2280     Accept single quotes as well as double quotes as terminators for char
2281     constants.
2282
2283   <tag><tt>loose_string_term</tt></tag>
2284
2285     Accept single quotes as well as double quotes as terminators for string
2286     constants.
2287
2288   <tag><tt>missing_char_term</tt></tag>
2289
2290     Accept single quoted character constants where the terminating quote is
2291     missing.
2292     <tscreen><verb>
2293         lda     #'a
2294     </verb></tscreen>
2295     <bf/Note:/ This does not work in conjunction with <tt/.FEATURE
2296     loose_string_term/, since in this case the input would be ambiguous.
2297
2298   <tag><tt>org_per_seg</tt><label id="org_per_seg"></tag>
2299
2300     This feature makes relocatable/absolute mode local to the current segment.
2301     Using <tt><ref id=".ORG" name=".ORG"></tt> when <tt/org_per_seg/ is in
2302     effect will only enable absolute mode for the current segment. Dito for
2303     <tt><ref id=".RELOC" name=".RELOC"></tt>.
2304
2305   <tag><tt>pc_assignment</tt></tag>
2306
2307     Allow assignments to the PC symbol (`*' or `&dollar;' if <tt/dollar_is_pc/
2308     is enabled). Such an assignment is handled identical to the <tt><ref
2309     id=".ORG" name=".ORG"></tt> command (which is usually not needed, so just
2310     removing the lines with the assignments may also be an option when porting
2311     code written for older assemblers).
2312
2313   <tag><tt>ubiquitous_idents</tt></tag>
2314
2315     Allow the use of instructions names as names for macros and symbols. This
2316     makes it possible to "overload" instructions by defining a macro with the
2317     same name. This does also make it possible to introduce hard to find errors
2318     in your code, so be careful!
2319
2320   </descrip>
2321
2322   It is also possible to specify features on the command line using the
2323   <tt><ref id="option--feature" name="--feature"></tt> command line option.
2324   This is useful when translating sources written for older assemblers, when
2325   you don't want to change the source code.
2326
2327   As an example, to translate sources written for Andre Fachats xa65
2328   assembler, the features
2329
2330   <verb>
2331         labels_without_colons, pc_assignment, loose_char_term
2332   </verb>
2333
2334   may be helpful. They do not make ca65 completely compatible, so you may not
2335   be able to translate the sources without changes, even when enabling these
2336   features. However, I have found several sources that translate without
2337   problems when enabling these features on the command line.
2338
2339
2340 <sect1><tt>.FILEOPT, .FOPT</tt><label id=".FOPT"><p>
2341
2342   Insert an option string into the object file. There are two forms of
2343   this command, one specifies the option by a keyword, the second
2344   specifies it as a number. Since usage of the second one needs knowledge
2345   of the internal encoding, its use is not recommended and I will only
2346   describe the first form here.
2347
2348   The command is followed by one of the keywords
2349
2350   <tscreen><verb>
2351         author
2352         comment
2353         compiler
2354   </verb></tscreen>
2355
2356   a comma and a string. The option is written into the object file
2357   together with the string value. This is currently unidirectional and
2358   there is no way to actually use these options once they are in the
2359   object file.
2360
2361   Examples:
2362
2363   <tscreen><verb>
2364         .fileopt        comment, "Code stolen from my brother"
2365         .fileopt        compiler, "BASIC 2.0"
2366         .fopt           author, "J. R. User"
2367   </verb></tscreen>
2368
2369
2370 <sect1><tt>.FORCEIMPORT</tt><label id=".FORCEIMPORT"><p>
2371
2372   Import an absolute symbol from another module. The command is followed by a
2373   comma separated list of symbols to import. The command is similar to <tt>
2374   <ref id=".IMPORT" name=".IMPORT"></tt>, but the import reference is always
2375   written to the generated object file, even if the symbol is never referenced
2376   (<tt><ref id=".IMPORT" name=".IMPORT"></tt> will not generate import
2377   references for unused symbols).
2378
2379   Example:
2380
2381   <tscreen><verb>
2382         .forceimport    needthisone, needthistoo
2383   </verb></tscreen>
2384
2385   See: <tt><ref id=".IMPORT" name=".IMPORT"></tt>
2386
2387
2388 <sect1><tt>.GLOBAL</tt><label id=".GLOBAL"><p>
2389
2390   Declare symbols as global. Must be followed by a comma separated list of
2391   symbols to declare. Symbols from the list, that are defined somewhere in the
2392   source, are exported, all others are imported. Additional <tt><ref
2393   id=".IMPORT" name=".IMPORT"></tt> or <tt><ref id=".EXPORT"
2394   name=".EXPORT"></tt> commands for the same symbol are allowed.
2395
2396   Example:
2397
2398   <tscreen><verb>
2399         .global foo, bar
2400   </verb></tscreen>
2401
2402
2403 <sect1><tt>.GLOBALZP</tt><label id=".GLOBALZP"><p>
2404
2405   Declare symbols as global. Must be followed by a comma separated list of
2406   symbols to declare. Symbols from the list, that are defined somewhere in the
2407   source, are exported, all others are imported. Additional <tt><ref
2408   id=".IMPORTZP" name=".IMPORTZP"></tt> or <tt><ref id=".EXPORTZP"
2409   name=".EXPORTZP"></tt> commands for the same symbol are allowed. The symbols
2410   in the list are explicitly marked as zero page symbols.
2411
2412   Example:
2413
2414   <tscreen><verb>
2415         .globalzp foo, bar
2416   </verb></tscreen>
2417
2418
2419 <sect1><tt>.I16</tt><label id=".I16"><p>
2420
2421   Valid only in 65816 mode. Switch the index registers to 16 bit.
2422
2423   Note: This command will not emit any code, it will tell the assembler to
2424   create 16 bit operands for immediate operands.
2425
2426   See also the <tt><ref id=".I8" name=".I8"></tt> and <tt><ref id=".SMART"
2427   name=".SMART"></tt> commands.
2428
2429
2430 <sect1><tt>.I8</tt><label id=".I8"><p>
2431
2432   Valid only in 65816 mode. Switch the index registers to 8 bit.
2433
2434   Note: This command will not emit any code, it will tell the assembler to
2435   create 8 bit operands for immediate operands.
2436
2437   See also the <tt><ref id=".I16" name=".I16"></tt> and <tt><ref id=".SMART"
2438   name=".SMART"></tt> commands.
2439
2440
2441 <sect1><tt>.IF</tt><label id=".IF"><p>
2442
2443   Conditional assembly: Evaluate an expression and switch assembler output
2444   on or off depending on the expression. The expression must be a constant
2445   expression, that is, all operands must be defined.
2446
2447   A expression value of zero evaluates to FALSE, any other value evaluates
2448   to TRUE.
2449
2450
2451 <sect1><tt>.IFBLANK</tt><label id=".IFBLANK"><p>
2452
2453   Conditional assembly: Check if there are any remaining tokens in this line,
2454   and evaluate to FALSE if this is the case, and to TRUE otherwise. If the
2455   condition is not true, further lines are not assembled until an <tt><ref
2456   id=".ELSE" name=".ESLE"></tt>, <tt><ref id=".ELSEIF" name=".ELSEIF"></tt> or
2457   <tt><ref id=".ENDIF" name=".ENDIF"></tt> directive.
2458
2459   This command is often used to check if a macro parameter was given. Since an
2460   empty macro parameter will evaluate to nothing, the condition will evaluate
2461   to FALSE if an empty parameter was given.
2462
2463   Example:
2464
2465   <tscreen><verb>
2466         .macro     arg1, arg2
2467         .ifblank   arg2
2468                    lda     #arg1
2469         .else
2470                    lda     #arg2
2471         .endif
2472         .endmacro
2473   </verb></tscreen>
2474
2475   See also: <tt><ref id=".BLANK" name=".BLANK"></tt>
2476
2477
2478 <sect1><tt>.IFCONST</tt><label id=".IFCONST"><p>
2479
2480   Conditional assembly: Evaluate an expression and switch assembler output
2481   on or off depending on the constness of the expression.
2482
2483   A const expression evaluates to to TRUE, a non const expression (one
2484   containing an imported or currently undefined symbol) evaluates to
2485   FALSE.
2486
2487   See also: <tt><ref id=".CONST" name=".CONST"></tt>
2488
2489
2490 <sect1><tt>.IFDEF</tt><label id=".IFDEF"><p>
2491
2492   Conditional assembly: Check if a symbol is defined. Must be followed by
2493   a symbol name. The condition is true if the the given symbol is already
2494   defined, and false otherwise.
2495
2496   See also: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
2497
2498
2499 <sect1><tt>.IFNBLANK</tt><label id=".IFNBLANK"><p>
2500
2501   Conditional assembly: Check if there are any remaining tokens in this line,
2502   and evaluate to TRUE if this is the case, and to FALSE otherwise. If the
2503   condition is not true, further lines are not assembled until an <tt><ref
2504   id=".ELSE" name=".ELSE"></tt>, <tt><ref id=".ELSEIF" name=".ELSEIF"></tt> or
2505   <tt><ref id=".ENDIF" name=".ENDIF"></tt> directive.
2506
2507   This command is often used to check if a macro parameter was given.
2508   Since an empty macro parameter will evaluate to nothing, the condition
2509   will evaluate to FALSE if an empty parameter was given.
2510
2511   Example:
2512
2513   <tscreen><verb>
2514         .macro     arg1, arg2
2515                    lda     #arg1
2516         .ifnblank  arg2
2517                    lda     #arg2
2518         .endif
2519         .endmacro
2520   </verb></tscreen>
2521
2522   See also: <tt><ref id=".BLANK" name=".BLANK"></tt>
2523
2524
2525 <sect1><tt>.IFNDEF</tt><label id=".IFNDEF"><p>
2526
2527   Conditional assembly: Check if a symbol is defined. Must be followed by
2528   a symbol name. The condition is true if the the given symbol is not
2529   defined, and false otherwise.
2530
2531   See also: <tt><ref id=".DEFINED" name=".DEFINED"></tt>
2532
2533
2534 <sect1><tt>.IFNREF</tt><label id=".IFNREF"><p>
2535
2536   Conditional assembly: Check if a symbol is referenced. Must be followed
2537   by a symbol name. The condition is true if if the the given symbol was
2538   not referenced before, and false otherwise.
2539
2540   See also: <tt><ref id=".REFERENCED" name=".REFERENCED"></tt>
2541
2542
2543 <sect1><tt>.IFP02</tt><label id=".IFP02"><p>
2544
2545   Conditional assembly: Check if the assembler is currently in 6502 mode
2546   (see <tt><ref id=".P02" name=".P02"></tt> command).
2547
2548
2549 <sect1><tt>.IFP816</tt><label id=".IFP816"><p>
2550
2551   Conditional assembly: Check if the assembler is currently in 65816 mode
2552   (see <tt><ref id=".P816" name=".P816"></tt> command).
2553
2554
2555 <sect1><tt>.IFPC02</tt><label id=".IFPC02"><p>
2556
2557   Conditional assembly: Check if the assembler is currently in 65C02 mode
2558   (see <tt><ref id=".PC02" name=".PC02"></tt> command).
2559
2560
2561 <sect1><tt>.IFPSC02</tt><label id=".IFPSC02"><p>
2562
2563   Conditional assembly: Check if the assembler is currently in 65SC02 mode
2564   (see <tt><ref id=".PSC02" name=".PSC02"></tt> command).
2565
2566
2567 <sect1><tt>.IFREF</tt><label id=".IFREF"><p>
2568
2569   Conditional assembly: Check if a symbol is referenced. Must be followed
2570   by a symbol name. The condition is true if if the the given symbol was
2571   referenced before, and false otherwise.
2572
2573   This command may be used to build subroutine libraries in include files
2574   (you may use separate object modules for this purpose too).
2575
2576   Example:
2577
2578   <tscreen><verb>
2579         .ifref  ToHex                   ; If someone used this subroutine
2580         ToHex:  tay                     ; Define subroutine
2581                 lda     HexTab,y
2582                 rts
2583         .endif
2584   </verb></tscreen>
2585
2586   See also: <tt><ref id=".REFERENCED" name=".REFERENCED"></tt>
2587
2588
2589 <sect1><tt>.IMPORT</tt><label id=".IMPORT"><p>
2590
2591   Import a symbol from another module. The command is followed by a comma
2592   separated list of symbols to import, with each one optionally followed by
2593   an address specification.
2594
2595   Example:
2596
2597   <tscreen><verb>
2598         .import foo
2599         .import bar: zeropage
2600   </verb></tscreen>
2601
2602   See: <tt><ref id=".IMPORTZP" name=".IMPORTZP"></tt>
2603
2604
2605 <sect1><tt>.IMPORTZP</tt><label id=".IMPORTZP"><p>
2606
2607   Import a symbol from another module. The command is followed by a comma
2608   separated list of symbols to import. The symbols are explicitly imported
2609   as zero page symbols (that is, symbols with values in byte range).
2610
2611   Example:
2612
2613   <tscreen><verb>
2614         .importzp       foo, bar
2615   </verb></tscreen>
2616
2617   See: <tt><ref id=".IMPORT" name=".IMPORT"></tt>
2618
2619
2620 <sect1><tt>.INCBIN</tt><label id=".INCBIN"><p>
2621
2622   Include a file as binary data. The command expects a string argument
2623   that is the name of a file to include literally in the current segment.
2624   In addition to that, a start offset and a size value may be specified,
2625   separated by commas. If no size is specified, all of the file from the
2626   start offset to end-of-file is used. If no start position is specified
2627   either, zero is assumed (which means that the whole file is inserted).
2628
2629   Example:
2630
2631   <tscreen><verb>
2632         ; Include whole file
2633         .incbin         "sprites.dat"
2634
2635         ; Include file starting at offset 256
2636         .incbin         "music.dat", $100
2637
2638         ; Read 100 bytes starting at offset 200
2639         .incbin         "graphics.dat", 200, 100
2640   </verb></tscreen>
2641
2642
2643 <sect1><tt>.INCLUDE</tt><label id=".INCLUDE"><p>
2644
2645   Include another file. Include files may be nested up to a depth of 16.
2646
2647   Example:
2648
2649   <tscreen><verb>
2650         .include        "subs.inc"
2651   </verb></tscreen>
2652
2653
2654 <sect1><tt>.INTERRUPTOR</tt><label id=".INTERRUPTOR"><p>
2655
2656   Export a symbol and mark it as an interruptor. This may be used together
2657   with the linker to build a table of interruptor subroutines that are called
2658   in an interrupt.
2659
2660   Note: The linker has a feature to build a table of marked routines, but it
2661   is your code that must call these routines, so just declaring a symbol as
2662   interruptor does nothing by itself.
2663
2664   An interruptor is always exported as an absolute (16 bit) symbol. You don't
2665   need to use an additional <tt/.export/ statement, this is implied by
2666   <tt/.interruptor/. It may have an optional priority that is separated by a
2667   comma. Higher numeric values mean a higher priority. If no priority is
2668   given, the default priority of 7 is used. Be careful when assigning
2669   priorities to your own module constructors so they won't interfere with the
2670   ones in the cc65 library.
2671
2672   Example:
2673
2674   <tscreen><verb>
2675         .interruptor    IrqHandler
2676         .interruptor    Handler, 16
2677   </verb></tscreen>
2678
2679   See the <tt><ref id=".CONDES" name=".CONDES"></tt> command and the separate
2680   section <ref id="condes" name="Module constructors/destructors"> explaining
2681   the feature in more detail.
2682
2683
2684 <sect1><tt>.LINECONT</tt><label id=".LINECONT"><p>
2685
2686   Switch on or off line continuations using the backslash character
2687   before a newline. The option is off by default.
2688   Note: Line continuations do not work in a comment. A backslash at the
2689   end of a comment is treated as part of the comment and does not trigger
2690   line continuation.
2691   The command must be followed by a '+' or '-' character to switch the
2692   option on or off respectively.
2693
2694   Example:
2695
2696   <tscreen><verb>
2697         .linecont       +               ; Allow line continuations
2698
2699         lda     \
2700                 #$20                    ; This is legal now
2701   </verb></tscreen>
2702
2703
2704 <sect1><tt>.LIST</tt><label id=".LIST"><p>
2705
2706   Enable output to the listing. The command must be followed by a boolean
2707   switch ("on", "off", "+" or "-") and will enable or disable listing
2708   output.
2709   The option has no effect if the listing is not enabled by the command line
2710   switch -l. If -l is used, an internal counter is set to 1. Lines are output
2711   to the listing file, if the counter is greater than zero, and suppressed if
2712   the counter is zero. Each use of <tt/.LIST/ will increment or decrement the
2713   counter.
2714
2715   Example:
2716
2717   <tscreen><verb>
2718         .list   on              ; Enable listing output
2719   </verb></tscreen>
2720
2721
2722 <sect1><tt>.LISTBYTES</tt><label id=".LISTBYTES"><p>
2723
2724   Set, how many bytes are shown in the listing for one source line. The
2725   default is 12, so the listing will show only the first 12 bytes for any
2726   source line that generates more than 12 bytes of code or data.
2727   The directive needs an argument, which is either "unlimited", or an
2728   integer constant in the range 4..255.
2729
2730   Examples:
2731
2732   <tscreen><verb>
2733         .listbytes      unlimited       ; List all bytes
2734         .listbytes      12              ; List the first 12 bytes
2735         .incbin         "data.bin"      ; Include large binary file
2736   </verb></tscreen>
2737
2738
2739 <sect1><tt>.LOCAL</tt><label id=".LOCAL"><p>
2740
2741   This command may only be used inside a macro definition. It declares a
2742   list of identifiers as local to the macro expansion.
2743
2744   A problem when using macros are labels: Since they don't change their name,
2745   you get a "duplicate symbol" error if the macro is expanded the second time.
2746   Labels declared with <tt><ref id=".LOCAL" name=".LOCAL"></tt> have their
2747   name mapped to an internal unique name (<tt/___ABCD__/) with each macro
2748   invocation.
2749
2750   Some other assemblers start a new lexical block inside a macro expansion.
2751   This has some drawbacks however, since that will not allow <em/any/ symbol
2752   to be visible outside a macro, a feature that is sometimes useful. The
2753   <tt><ref id=".LOCAL" name=".LOCAL"></tt> command is in my eyes a better way
2754   to address the problem.
2755
2756   You get an error when using <tt><ref id=".LOCAL" name=".LOCAL"></tt> outside
2757   a macro.
2758
2759
2760 <sect1><tt>.LOCALCHAR</tt><label id=".LOCALCHAR"><p>
2761
2762   Defines the character that start "cheap" local labels. You may use one
2763   of '@' and '?' as start character. The default is '@'.
2764
2765   Cheap local labels are labels that are visible only between two non
2766   cheap labels. This way you can reuse identifiers like "<tt/loop/" without
2767   using explicit lexical nesting.
2768
2769   Example:
2770
2771   <tscreen><verb>
2772         .localchar      '?'
2773
2774         Clear:  lda     #$00            ; Global label
2775         ?Loop:  sta     Mem,y           ; Local label
2776                 dey
2777                 bne     ?Loop           ; Ok
2778                 rts
2779         Sub:    ...                     ; New global label
2780                 bne     ?Loop           ; ERROR: Unknown identifier!
2781   </verb></tscreen>
2782
2783
2784 <sect1><tt>.MACPACK</tt><label id=".MACPACK"><p>
2785
2786   Insert a predefined macro package. The command is followed by an
2787   identifier specifying the macro package to insert. Available macro
2788   packages are:
2789
2790   <tscreen><verb>
2791         atari           Defines the scrcode macro.
2792         cbm             Defines the scrcode macro.
2793         cpu             Defines constants for the .CPU variable.
2794         generic         Defines generic macros like add and sub.
2795         longbranch      Defines conditional long jump macros.
2796   </verb></tscreen>
2797
2798   Including a macro package twice, or including a macro package that
2799   redefines already existing macros will lead to an error.
2800
2801   Example:
2802
2803   <tscreen><verb>
2804         .macpack        longbranch      ; Include macro package
2805
2806                 cmp     #$20            ; Set condition codes
2807                 jne     Label           ; Jump long on condition
2808   </verb></tscreen>
2809
2810   Macro packages are explained in more detail in section <ref
2811   id="macropackages" name="Macro packages">.
2812
2813
2814 <sect1><tt>.MAC, .MACRO</tt><label id=".MAC"><p>
2815
2816   Start a classic macro definition. The command is followed by an identifier
2817   (the macro name) and optionally by a comma separated list of identifiers
2818   that are macro parameters.
2819
2820   See section <ref id="macros" name="Macros">.
2821
2822
2823 <sect1><tt>.ORG</tt><label id=".ORG"><p>
2824
2825   Start a section of absolute code. The command is followed by a constant
2826   expression that gives the new PC counter location for which the code is
2827   assembled. Use <tt><ref id=".RELOC" name=".RELOC"></tt> to switch back to
2828   relocatable code.
2829
2830   By default, absolute/relocatable mode is global (valid even when switching
2831   segments). Using <tt>.FEATURE <ref id="org_per_seg" name="org_per_seg"></tt>
2832   it can be made segment local.
2833
2834   Please note that you <em/do not need/ <tt/.ORG/ in most cases. Placing
2835   code at a specific address is the job of the linker, not the assembler, so
2836   there is usually no reason to assemble code to a specific address.
2837
2838   Example:
2839
2840   <tscreen><verb>
2841         .org    $7FF            ; Emit code starting at $7FF
2842   </verb></tscreen>
2843
2844
2845 <sect1><tt>.OUT</tt><label id=".OUT"><p>
2846
2847   Output a string to the console without producing an error. This command
2848   is similar to <tt/.ERROR/, however, it does not force an assembler error
2849   that prevents the creation of an object file.
2850
2851   Example:
2852
2853   <tscreen><verb>
2854         .out    "This code was written by the codebuster(tm)"
2855   </verb></tscreen>
2856
2857   See also the <tt><ref id=".WARNING" name=".WARNING"></tt> and <tt><ref
2858   id=".ERROR" name=".ERROR"></tt> directives.
2859
2860
2861 <sect1><tt>.P02</tt><label id=".P02"><p>
2862
2863   Enable the 6502 instruction set, disable 65SC02, 65C02 and 65816
2864   instructions. This is the default if not overridden by the
2865   <tt><ref id="option--cpu" name="--cpu"></tt> command line option.
2866
2867   See: <tt><ref id=".PC02" name=".PC02"></tt>, <tt><ref id=".PSC02"
2868   name=".PSC02"></tt> and <tt><ref id=".P816" name=".P816"></tt>
2869
2870
2871 <sect1><tt>.P816</tt><label id=".P816"><p>
2872
2873   Enable the 65816 instruction set. This is a superset of the 65SC02 and
2874   6502 instruction sets.
2875
2876   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PSC02"
2877   name=".PSC02"></tt> and <tt><ref id=".PC02" name=".PC02"></tt>
2878
2879
2880 <sect1><tt>.PAGELEN, .PAGELENGTH</tt><label id=".PAGELENGTH"><p>
2881
2882   Set the page length for the listing. Must be followed by an integer
2883   constant. The value may be "unlimited", or in the range 32 to 127. The
2884   statement has no effect if no listing is generated. The default value is -1
2885   (unlimited) but may be overridden by the <tt/--pagelength/ command line
2886   option. Beware: Since ca65 is a one pass assembler, the listing is generated
2887   after assembly is complete, you cannot use multiple line lengths with one
2888   source. Instead, the value set with the last <tt/.PAGELENGTH/ is used.
2889
2890   Examples:
2891
2892   <tscreen><verb>
2893         .pagelength     66              ; Use 66 lines per listing page
2894
2895         .pagelength     unlimited       ; Unlimited page length
2896   </verb></tscreen>
2897
2898
2899 <sect1><tt>.PC02</tt><label id=".PC02"><p>
2900
2901   Enable the 65C02 instructions set. This instruction set includes all
2902   6502 and 65SC02 instructions.
2903
2904   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PSC02"
2905   name=".PSC02"></tt> and <tt><ref id=".P816" name=".P816"></tt>
2906
2907
2908 <sect1><tt>.POPSEG</tt><label id=".POPSEG"><p>
2909
2910   Pop the last pushed segment from the stack, and set it.
2911
2912   This command will switch back to the segment that was last pushed onto the
2913   segment stack using the <tt><ref id=".PUSHSEG" name=".PUSHSEG"></tt>
2914   command, and remove this entry from the stack.
2915
2916   The assembler will print an error message if the segment stack is empty
2917   when this command is issued.
2918
2919   See: <tt><ref id=".PUSHSEG" name=".PUSHSEG"></tt>
2920
2921
2922 <sect1><tt>.PROC</tt><label id=".PROC"><p>
2923
2924   Start a nested lexical level with the given name and adds a symbol with this
2925   name to the enclosing scope. All new symbols from now on are in the local
2926   lexical level and are accessible from outside only via <ref id="scopesyntax"
2927   name="explicit scope specification">. Symbols defined outside this local
2928   level may be accessed as long as their names are not used for new symbols
2929   inside the level. Symbols names in other lexical levels do not clash, so you
2930   may use the same names for identifiers. The lexical level ends when the
2931   <tt><ref id=".ENDPROC" name=".ENDPROC"></tt> command is read. Lexical levels
2932   may be nested up to a depth of 16 (this is an artificial limit to protect
2933   against errors in the source).
2934
2935   Note: Macro names are always in the global level and in a separate name
2936   space. There is no special reason for this, it's just that I've never
2937   had any need for local macro definitions.
2938
2939   Example:
2940
2941   <tscreen><verb>
2942         .proc   Clear           ; Define Clear subroutine, start new level
2943                 lda     #$00
2944         L1:     sta     Mem,y   ; L1 is local and does not cause a
2945                                 ; duplicate symbol error if used in other
2946                                 ; places
2947                 dey
2948                 bne     L1      ; Reference local symbol
2949                 rts
2950         .endproc                ; Leave lexical level
2951   </verb></tscreen>
2952
2953   See: <tt/<ref id=".ENDPROC" name=".ENDPROC">/ and <tt/<ref id=".SCOPE"
2954   name=".SCOPE">/
2955
2956
2957 <sect1><tt>.PSC02</tt><label id=".PSC02"><p>
2958
2959   Enable the 65SC02 instructions set. This instruction set includes all
2960   6502 instructions.
2961
2962   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PC02"
2963   name=".PC02"></tt> and <tt><ref id=".P816" name=".P816"></tt>
2964
2965
2966 <sect1><tt>.PUSHSEG</tt><label id=".PUSHSEG"><p>
2967
2968   Push the currently active segment onto a stack. The entries on the stack
2969   include the name of the segment and the segment type. The stack has a size
2970   of 16 entries.
2971
2972   <tt/.PUSHSEG/ allows together with <tt><ref id=".POPSEG" name=".POPSEG"></tt>
2973   to switch to another segment and to restore the old segment later, without
2974   even knowing the name and type of the current segment.
2975
2976   The assembler will print an error message if the segment stack is already
2977   full, when this command is issued.
2978
2979   See: <tt><ref id=".POPSEG" name=".POPSEG"></tt>
2980
2981
2982 <sect1><tt>.RELOC</tt><label id=".RELOC"><p>
2983
2984   Switch back to relocatable mode. See the <tt><ref id=".ORG"
2985   name=".ORG"></tt> command.
2986
2987
2988 <sect1><tt>.REPEAT</tt><label id=".REPEAT"><p>
2989
2990   Repeat all commands between <tt/.REPEAT/ and <tt><ref id=".ENDREPEAT"
2991   name=".ENDREPEAT"></tt> constant number of times. The command is followed by
2992   a constant expression that tells how many times the commands in the body
2993   should get repeated. Optionally, a comma and an identifier may be specified.
2994   If this identifier is found in the body of the repeat statement, it is
2995   replaced by the current repeat count (starting with zero for the first time
2996   the body is repeated).
2997
2998   <tt/.REPEAT/ statements may be nested. If you use the same repeat count
2999   identifier for a nested <tt/.REPEAT/ statement, the one from the inner
3000   level will be used, not the one from the outer level.
3001
3002   Example:
3003
3004   The following macro will emit a string that is "encrypted" in that all
3005   characters of the string are XORed by the value $55.
3006
3007   <tscreen><verb>
3008         .macro  Crypt   Arg
3009                 .repeat .strlen(Arg), I
3010                 .byte   .strat(Arg, I) ^ $55
3011                 .endrep
3012         .endmacro
3013   </verb></tscreen>
3014
3015   See: <tt><ref id=".ENDREPEAT" name=".ENDREPEAT"></tt>
3016
3017
3018 <sect1><tt>.RES</tt><label id=".RES"><p>
3019
3020   Reserve storage. The command is followed by one or two constant
3021   expressions. The first one is mandatory and defines, how many bytes of
3022   storage should be defined. The second, optional expression must by a
3023   constant byte value that will be used as value of the data. If there
3024   is no fill value given, the linker will use the value defined in the
3025   linker configuration file (default: zero).
3026
3027   Example:
3028
3029   <tscreen><verb>
3030         ; Reserve 12 bytes of memory with value $AA
3031         .res    12, $AA
3032   </verb></tscreen>
3033
3034
3035 <sect1><tt>.RODATA</tt><label id=".RODATA"><p>
3036
3037   Switch to the RODATA segment. The name of the RODATA segment is always
3038   "RODATA", so this is a shortcut for
3039
3040   <tscreen><verb>
3041         .segment  "RODATA"
3042   </verb></tscreen>
3043
3044   The RODATA segment is a segment that is used by the compiler for
3045   readonly data like string constants.
3046
3047   See also the <tt><ref id=".SEGMENT" name=".SEGMENT"></tt> command.
3048
3049
3050 <sect1><tt>.SCOPE</tt><label id=".SCOPE"><p>
3051
3052   Start a nested lexical level with the given name. All new symbols from now
3053   on are in the local lexical level and are accessible from outside only via
3054   <ref id="scopesyntax" name="explicit scope specification">. Symbols defined
3055   outside this local level may be accessed as long as their names are not used
3056   for new symbols inside the level. Symbols names in other lexical levels do
3057   not clash, so you may use the same names for identifiers. The lexical level
3058   ends when the <tt><ref id=".ENDSCOPE" name=".ENDSCOPE"></tt> command is
3059   read. Lexical levels may be nested up to a depth of 16 (this is an
3060   artificial limit to protect against errors in the source).
3061
3062   Note: Macro names are always in the global level and in a separate name
3063   space. There is no special reason for this, it's just that I've never
3064   had any need for local macro definitions.
3065
3066   Example:
3067
3068   <tscreen><verb>
3069         .scope  Error                   ; Start new scope named Error
3070                 None = 0                ; No error
3071                 File = 1                ; File error
3072                 Parse = 2               ; Parse error
3073         .endscope                       ; Close lexical level
3074
3075                 ...
3076                 lda #Error::File        ; Use symbol from scope Error
3077   </verb></tscreen>
3078
3079   See: <tt/<ref id=".ENDSCOPE" name=".ENDSCOPE">/ and <tt/<ref id=".PROC"
3080   name=".PROC">/
3081
3082
3083 <sect1><tt>.SEGMENT</tt><label id=".SEGMENT"><p>
3084
3085   Switch to another segment. Code and data is always emitted into a
3086   segment, that is, a named section of data. The default segment is
3087   "CODE". There may be up to 254 different segments per object file
3088   (and up to 65534 per executable). There are shortcut commands for
3089   the most common segments ("CODE", "DATA" and "BSS").
3090
3091   The command is followed by a string containing the segment name (there are
3092   some constraints for the name - as a rule of thumb use only those segment
3093   names that would also be valid identifiers). There may also be an optional
3094   address size separated by a colon. See the section covering <tt/<ref
3095   id="address-sizes" name="address sizes">/ for more information.
3096
3097   The default address size for a segment depends on the memory model specified
3098   on the command line. The default is "absolute", which means that you don't
3099   have to use an address size modifier in most cases.
3100
3101   "absolute" means that the is a segment with 16 bit (absolute) addressing.
3102   That is, the segment will reside somewhere in core memory outside the zero
3103   page. "zeropage" (8 bit) means that the segment will be placed in the zero
3104   page and direct (short) addressing is possible for data in this segment.
3105
3106   Beware: Only labels in a segment with the zeropage attribute are marked
3107   as reachable by short addressing. The `*' (PC counter) operator will
3108   work as in other segments and will create absolute variable values.
3109
3110   Please note that a segment cannot have two different address sizes. A
3111   segment specified as zeropage cannot be declared as being absolute later.
3112
3113   Examples:
3114
3115   <tscreen><verb>
3116         .segment "ROM2"                 ; Switch to ROM2 segment
3117         .segment "ZP2": zeropage        ; New direct segment
3118         .segment "ZP2"                  ; Ok, will use last attribute
3119         .segment "ZP2": absolute        ; Error, redecl mismatch
3120   </verb></tscreen>
3121
3122   See: <tt><ref id=".BSS" name=".BSS"></tt>, <tt><ref id=".CODE"
3123   name=".CODE"></tt>, <tt><ref id=".DATA" name=".DATA"></tt> and <tt><ref
3124   id=".RODATA" name=".RODATA"></tt>
3125
3126
3127 <sect1><tt>.SETCPU</tt><label id=".SETCPU"><p>
3128
3129   Switch the CPU instruction set. The command is followed by a string that
3130   specifies the CPU. Possible values are those that can also be supplied to
3131   the <tt><ref id="option--cpu" name="--cpu"></tt> command line option,
3132   namely: 6502, 6502X, 65SC02, 65C02, 65816, sunplus and HuC6280. Please
3133   note that support for the sunplus CPU is not available in the freeware
3134   version, because the instruction set of the sunplus CPU is "proprietary
3135   and confidential".
3136
3137   See: <tt><ref id=".CPU" name=".CPU"></tt>,
3138        <tt><ref id=".IFP02" name=".IFP02"></tt>,
3139        <tt><ref id=".IFP816" name=".IFP816"></tt>,
3140        <tt><ref id=".IFPC02" name=".IFPC02"></tt>,
3141        <tt><ref id=".IFPSC02" name=".IFPSC02"></tt>,
3142        <tt><ref id=".P02" name=".P02"></tt>,
3143        <tt><ref id=".P816" name=".P816"></tt>,
3144        <tt><ref id=".PC02" name=".PC02"></tt>,
3145        <tt><ref id=".PSC02" name=".PSC02"></tt>
3146
3147
3148 <sect1><tt>.SMART</tt><label id=".SMART"><p>
3149
3150   Switch on or off smart mode. The command must be followed by a '+' or '-'
3151   character to switch the option on or off respectively. The default is off
3152   (that is, the assembler doesn't try to be smart), but this default may be
3153   changed by the -s switch on the command line.
3154
3155   In smart mode the assembler will do the following:
3156
3157   <itemize>
3158   <item>Track usage of the <tt/REP/ and <tt/SEP/ instructions in 65816 mode
3159         and update the operand sizes accordingly. If the operand of such an
3160         instruction cannot be evaluated by the assembler (for example, because
3161         the operand is an imported symbol), a warning is issued. Beware: Since
3162         the assembler cannot trace the execution flow this may lead to false
3163         results in some cases. If in doubt, use the <tt/.Inn/ and <tt/.Ann/
3164         instructions to tell the assembler about the current settings.
3165   <item>In 65816 mode, replace a <tt/RTS/ instruction by <tt/RTL/ if it is
3166         used within a procedure declared as <tt/far/, or if the procedure has
3167         no explicit address specification, but it is <tt/far/ because of the
3168         memory model used.
3169   </itemize>
3170
3171   Example:
3172
3173   <tscreen><verb>
3174         .smart                          ; Be smart
3175         .smart  -                       ; Stop being smart
3176   </verb></tscreen>
3177
3178   See: <tt><ref id=".A16" name=".A16"></tt>,
3179        <tt><ref id=".A8" name=".A8"></tt>,
3180        <tt><ref id=".I16" name=".I16"></tt>,
3181        <tt><ref id=".I8" name=".I8"></tt>
3182
3183
3184 <sect1><tt>.STRUCT</tt><label id=".STRUCT"><p>
3185
3186   Starts a struct definition. Structs are covered in a separate section named
3187   <ref id="structs" name="&quot;Structs and unions&quot;">.
3188
3189   See: <tt><ref id=".ENDSTRUCT" name=".ENDSTRUCT"></tt>
3190
3191
3192 <sect1><tt>.SUNPLUS</tt><label id=".SUNPLUS"><p>
3193
3194   Enable the SunPlus instructions set. This command will not work in the
3195   freeware version of the assembler, because the instruction set is
3196   "proprietary and confidential".
3197
3198   See: <tt><ref id=".P02" name=".P02"></tt>, <tt><ref id=".PSC02"
3199   name=".PSC02"></tt>, <tt><ref id=".PC02" name=".PC02"></tt>, and
3200   <tt><ref id=".P816" name=".P816"></tt>
3201
3202
3203 <sect1><tt>.TAG</tt><label id=".TAG"><p>
3204
3205   Allocate space for a struct or union.
3206
3207   Example:
3208
3209   <tscreen><verb>
3210         .struct Point
3211                 xcoord  .word
3212                 ycoord  .word
3213         .endstruct
3214
3215         .bss
3216                 .tag    Point           ; Allocate 4 bytes
3217   </verb></tscreen>
3218
3219
3220 <sect1><tt>.WARNING</tt><label id=".WARNING"><p>
3221
3222   Force an assembly warning. The assembler will output a warning message
3223   preceded by "User warning". This warning will always be output, even if
3224   other warnings are disabled with the <tt><ref id="option-W" name="-W0"></tt>
3225   command line option.
3226
3227   This command may be used to output possible problems when assembling
3228   the source file.
3229
3230   Example:
3231
3232   <tscreen><verb>
3233         .macro  jne     target
3234                 .local L1
3235                 .ifndef target
3236                 .warning "Forward jump in jne, cannot optimize!"
3237                 beq     L1
3238                 jmp     target
3239         L1:
3240                 .else
3241                 ...
3242                 .endif
3243         .endmacro
3244   </verb></tscreen>
3245
3246   See also the <tt><ref id=".ERROR" name=".ERROR"></tt> and <tt><ref id=".OUT"
3247   name=".OUT"></tt> directives.
3248
3249
3250 <sect1><tt>.WORD</tt><label id=".WORD"><p>
3251
3252   Define word sized data. Must be followed by a sequence of (word ranged,
3253   but not necessarily constant) expressions.
3254
3255   Example:
3256
3257   <tscreen><verb>
3258         .word   $0D00, $AF13, _Clear
3259   </verb></tscreen>
3260
3261
3262 <sect1><tt>.ZEROPAGE</tt><label id=".ZEROPAGE"><p>
3263
3264   Switch to the ZEROPAGE segment and mark it as direct (zeropage) segment.
3265   The name of the ZEROPAGE segment is always "ZEROPAGE", so this is a
3266   shortcut for
3267
3268   <tscreen><verb>
3269         .segment  "ZEROPAGE", zeropage
3270   </verb></tscreen>
3271
3272   Because of the "zeropage" attribute, labels declared in this segment are
3273   addressed using direct addressing mode if possible. You <em/must/ instruct
3274   the linker to place this segment somewhere in the address range 0..$FF
3275   otherwise you will get errors.
3276
3277   See: <tt><ref id=".SEGMENT" name=".SEGMENT"></tt>
3278
3279
3280
3281 <sect>Macros<label id="macros"><p>
3282
3283
3284 <sect1>Introduction<p>
3285
3286 Macros may be thought of as "parametrized super instructions". Macros are
3287 sequences of tokens that have a name. If that name is used in the source
3288 file, the macro is "expanded", that is, it is replaced by the tokens that
3289 were specified when the macro was defined.
3290
3291
3292 <sect1>Macros without parameters<p>
3293
3294 In it's simplest form, a macro does not have parameters. Here's an
3295 example:
3296
3297 <tscreen><verb>
3298         .macro  asr             ; Arithmetic shift right
3299                 cmp     #$80    ; Put bit 7 into carry
3300                 ror             ; Rotate right with carry
3301         .endmacro
3302 </verb></tscreen>
3303
3304 The macro above consists of two real instructions, that are inserted into
3305 the code, whenever the macro is expanded. Macro expansion is simply done
3306 by using the name, like this:
3307
3308 <tscreen><verb>
3309         lda     $2010
3310         asr
3311         sta     $2010
3312 </verb></tscreen>
3313
3314
3315 <sect1>Parametrized macros<p>
3316
3317 When using macro parameters, macros can be even more useful:
3318
3319 <tscreen><verb>
3320         .macro  inc16   addr
3321                 clc
3322                 lda     addr
3323                 adc     #$01
3324                 sta     addr
3325                 lda     addr+1
3326                 adc     #$00
3327                 sta     addr+1
3328         .endmacro
3329 </verb></tscreen>
3330
3331 When calling the macro, you may give a parameter, and each occurrence of
3332 the name "addr" in the macro definition will be replaced by the given
3333 parameter. So
3334
3335 <tscreen><verb>
3336         inc16   $1000
3337 </verb></tscreen>
3338
3339 will be expanded to
3340
3341 <tscreen><verb>
3342                 clc
3343                 lda     $1000
3344                 adc     #$01
3345                 sta     $1000
3346                 lda     $1000+1
3347                 adc     #$00
3348                 sta     $1000+1
3349 </verb></tscreen>
3350
3351 A macro may have more than one parameter, in this case, the parameters
3352 are separated by commas. You are free to give less parameters than the
3353 macro actually takes in the definition. You may also leave intermediate
3354 parameters empty. Empty parameters are replaced by empty space (that is,
3355 they are removed when the macro is expanded). If you have a look at our
3356 macro definition above, you will see, that replacing the "addr" parameter
3357 by nothing will lead to wrong code in most lines. To help you, writing
3358 macros with a variable parameter list, there are some control commands:
3359
3360 <tt><ref id=".IFBLANK" name=".IFBLANK"></tt> tests the rest of the line and
3361 returns true, if there are any tokens on the remainder of the line. Since
3362 empty parameters are replaced by nothing, this may be used to test if a given
3363 parameter is empty. <tt><ref id=".IFNBLANK" name=".IFNBLANK"></tt> tests the
3364 opposite.
3365
3366 Look at this example:
3367
3368 <tscreen><verb>
3369         .macro  ldaxy   a, x, y
3370         .ifnblank       a
3371                 lda     #a
3372         .endif
3373         .ifnblank       x
3374                 ldx     #x
3375         .endif
3376         .ifnblank       y
3377                 ldy     #y
3378         .endif
3379         .endmacro
3380 </verb></tscreen>
3381
3382 This macro may be called as follows:
3383
3384 <tscreen><verb>
3385         ldaxy   1, 2, 3         ; Load all three registers
3386
3387         ldaxy   1, , 3          ; Load only a and y
3388
3389         ldaxy   , , 3           ; Load y only
3390 </verb></tscreen>
3391
3392 There's another helper command for determining, which macro parameters are
3393 valid: <tt><ref id=".PARAMCOUNT" name=".PARAMCOUNT"></tt> This command is
3394 replaced by the parameter count given, <em/including/ intermediate empty macro
3395 parameters:
3396
3397 <tscreen><verb>
3398         ldaxy   1               ; .PARAMCOUNT = 1
3399         ldaxy   1,,3            ; .PARAMCOUNT = 3
3400         ldaxy   1,2             ; .PARAMCOUNT = 2
3401         ldaxy   1,              ; .PARAMCOUNT = 2
3402         ldaxy   1,2,3           ; .PARAMCOUNT = 3
3403 </verb></tscreen>
3404
3405 Macro parameters may optionally be enclosed into curly braces. This allows the
3406 inclusion of tokens that would otherwise terminate the parameter (the comma in
3407 case of a macro parameter).
3408
3409 <tscreen><verb>
3410         .macro  foo     arg1, arg2
3411                 ...
3412         .endmacro
3413
3414                 foo     ($00,x)         ; Two parameters passed
3415                 foo     {($00,x)}       ; One parameter passed
3416 </verb></tscreen>
3417
3418 In the first case, the macro is called with two parameters: '<tt/(&dollar;00/'
3419 and 'x)'. The comma is not passed to the macro, since it is part of the
3420 calling sequence, not the parameters.
3421
3422 In the second case, '(&dollar;00,x)' is passed to the macro, this time
3423 including the comma.
3424
3425
3426 <sect1>Detecting parameter types<p>
3427
3428 Sometimes it is nice to write a macro that acts differently depending on the
3429 type of the argument supplied. An example would be a macro that loads a 16 bit
3430 value from either an immediate operand, or from memory. The <tt/<ref
3431 id=".MATCH" name=".MATCH">/ and <tt/<ref id=".XMATCH" name=".XMATCH">/
3432 functions will allow you to do exactly this:
3433
3434 <tscreen><verb>
3435         .macro  ldax    arg
3436                 .if (.match (.left (1, {arg}), #))
3437                     ; immediate mode
3438                     lda     #<(.right (.tcount ({arg})-1, {arg}))
3439                     ldx     #>(.right (.tcount ({arg})-1, {arg}))
3440                 .else
3441                     ; assume absolute or zero page
3442                     lda     arg
3443                     ldx     1+(arg)
3444                 .endif
3445         .endmacro
3446 </verb></tscreen>
3447
3448 Using the <tt/<ref id=".MATCH" name=".MATCH">/ function, the macro is able to
3449 check if its argument begins with a hash mark. If so, two immediate loads are
3450 emitted, Otherwise a load from an absolute zero page memory location is
3451 assumed. Please note how the curly braces are used to enclose parameters to
3452 pseudo functions handling token lists. This is necessary, because the token
3453 lists may include commas or parens, which would be treated by the assembler
3454 as end-of-list.
3455
3456 The macro can be used as
3457
3458 <tscreen><verb>
3459         foo:    .word   $5678
3460         ...
3461                 ldax    #$1234          ; X=$12, A=$34
3462         ...
3463                 ldax    foo             ; X=$56, A=$78
3464 </verb></tscreen>
3465
3466
3467 <sect1>Recursive macros<p>
3468
3469 Macros may be used recursively:
3470
3471 <tscreen><verb>
3472         .macro  push    r1, r2, r3
3473                 lda     r1
3474                 pha
3475         .if     .paramcount > 1
3476                 push    r2, r3
3477         .endif
3478         .endmacro
3479 </verb></tscreen>
3480
3481 There's also a special macro to help writing recursive macros: <tt><ref
3482 id=".EXITMACRO" name=".EXITMACRO"></tt> This command will stop macro expansion
3483 immediately:
3484
3485 <tscreen><verb>
3486         .macro  push    r1, r2, r3, r4, r5, r6, r7
3487         .ifblank        r1
3488                 ; First parameter is empty
3489                 .exitmacro
3490         .else
3491                 lda     r1
3492                 pha
3493         .endif
3494                 push    r2, r3, r4, r5, r6, r7
3495         .endmacro
3496 </verb></tscreen>
3497
3498 When expanding this macro, the expansion will push all given parameters
3499 until an empty one is encountered. The macro may be called like this:
3500
3501 <tscreen><verb>
3502         push    $20, $21, $32           ; Push 3 ZP locations
3503         push    $21                     ; Push one ZP location
3504 </verb></tscreen>
3505
3506
3507 <sect1>Local symbols inside macros<p>
3508
3509 Now, with recursive macros, <tt><ref id=".IFBLANK" name=".IFBLANK"></tt> and
3510 <tt><ref id=".PARAMCOUNT" name=".PARAMCOUNT"></tt>, what else do you need?
3511 Have a look at the inc16 macro above. Here is it again:
3512
3513 <tscreen><verb>
3514         .macro  inc16   addr
3515                 clc
3516                 lda     addr
3517                 adc     #$01
3518                 sta     addr
3519                 lda     addr+1
3520                 adc     #$00
3521                 sta     addr+1
3522         .endmacro
3523 </verb></tscreen>
3524
3525 If you have a closer look at the code, you will notice, that it could be
3526 written more efficiently, like this:
3527
3528 <tscreen><verb>
3529         .macro  inc16   addr
3530                 inc     addr
3531                 bne     Skip
3532                 inc     addr+1
3533         Skip:
3534         .endmacro
3535 </verb></tscreen>
3536
3537 But imagine what happens, if you use this macro twice? Since the label
3538 "Skip" has the same name both times, you get a "duplicate symbol" error.
3539 Without a way to circumvent this problem, macros are not as useful, as
3540 they could be. One solution is, to start a new lexical block inside the
3541 macro:
3542
3543 <tscreen><verb>
3544         .macro  inc16   addr
3545         .proc
3546                 inc     addr
3547                 bne     Skip
3548                 inc     addr+1
3549         Skip:
3550         .endproc
3551         .endmacro
3552 </verb></tscreen>
3553
3554 Now the label is local to the block and not visible outside. However,
3555 sometimes you want a label inside the macro to be visible outside. To make
3556 that possible, there's a new command that's only usable inside a macro
3557 definition: <tt><ref id=".LOCAL" name=".LOCAL"></tt>. <tt/.LOCAL/ declares one
3558 or more symbols as local to the macro expansion. The names of local variables
3559 are replaced by a unique name in each separate macro expansion. So we could
3560 also solve the problem above by using <tt/.LOCAL/:
3561
3562 <tscreen><verb>
3563         .macro  inc16   addr
3564                 .local  Skip            ; Make Skip a local symbol
3565                 clc
3566                 lda     addr
3567                 adc     #$01
3568                 sta     addr
3569                 bcc     Skip
3570                 inc     addr+1
3571         Skip:                           ; Not visible outside
3572         .endmacro
3573 </verb></tscreen>
3574
3575
3576 <sect1>C style macros<p>
3577
3578 Starting with version 2.5 of the assembler, there is a second macro type
3579 available: C style macros using the <tt/.DEFINE/ directive. These macros are
3580 similar to the classic macro type described above, but behaviour is sometimes
3581 different:
3582
3583 <itemize>
3584
3585 <item>  Macros defined with <tt><ref id=".DEFINE" name=".DEFINE"></tt> may not
3586         span more than a line. You may use line continuation (see <tt><ref
3587         id=".LINECONT" name=".LINECONT"></tt>) to spread the definition over
3588         more than one line for increased readability, but the macro itself
3589         may not contain an end-of-line token.
3590
3591 <item>  Macros defined with <tt><ref id=".DEFINE" name=".DEFINE"></tt> share
3592         the name space with classic macros, but they are detected and replaced
3593         at the scanner level. While classic macros may be used in every place,
3594         where a mnemonic or other directive is allowed, <tt><ref id=".DEFINE"
3595         name=".DEFINE"></tt> style macros are allowed anywhere in a line. So
3596         they are more versatile in some situations.
3597
3598 <item>  <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros may take
3599         parameters. While classic macros may have empty parameters, this is
3600         not true for <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros.
3601         For this macro type, the number of actual parameters must match
3602         exactly the number of formal parameters.
3603
3604         To make this possible, formal parameters are enclosed in braces when
3605         defining the macro. If there are no parameters, the empty braces may
3606         be omitted.
3607
3608 <item>  Since <tt><ref id=".DEFINE" name=".DEFINE"></tt> style macros may not
3609         contain end-of-line tokens, there are things that cannot be done. They
3610         may not contain several processor instructions for example. So, while
3611         some things may be done with both macro types, each type has special
3612         usages. The types complement each other.
3613
3614 </itemize>
3615
3616 Let's look at a few examples to make the advantages and disadvantages
3617 clear.
3618
3619 To emulate assemblers that use "<tt/EQU/" instead of "<tt/=/" you may use the
3620 following <tt/.DEFINE/:
3621
3622 <tscreen><verb>
3623         .define EQU     =
3624
3625         foo     EQU     $1234           ; This is accepted now
3626 </verb></tscreen>
3627
3628 You may use the directive to define string constants used elsewhere:
3629
3630 <tscreen><verb>
3631         ; Define the version number
3632         .define VERSION         "12.3a"
3633
3634         ; ... and use it
3635         .asciiz VERSION
3636 </verb></tscreen>
3637
3638 Macros with parameters may also be useful:
3639
3640 <tscreen><verb>
3641         .define DEBUG(message)  .out    message
3642
3643         DEBUG   "Assembling include file #3"
3644 </verb></tscreen>
3645
3646 Note that, while formal parameters have to be placed in braces, this is
3647 not true for the actual parameters. Beware: Since the assembler cannot
3648 detect the end of one parameter, only the first token is used. If you
3649 don't like that, use classic macros instead:
3650
3651 <tscreen><verb>
3652         .macro  message
3653                 .out    message
3654         .endmacro
3655 </verb></tscreen>
3656
3657 (This is an example where a problem can be solved with both macro types).
3658
3659
3660 <sect1>Characters in macros<p>
3661
3662 When using the <ref id="option-t" name="-t"> option, characters are translated
3663 into the target character set of the specific machine. However, this happens
3664 as late as possible. This means that strings are translated if they are part
3665 of a <tt><ref id=".BYTE" name=".BYTE"></tt> or <tt><ref id=".ASCIIZ"
3666 name=".ASCIIZ"></tt> command. Characters are translated as soon as they are
3667 used as part of an expression.
3668
3669 This behaviour is very intuitive outside of macros but may be confusing when
3670 doing more complex macros. If you compare characters against numeric values,
3671 be sure to take the translation into account.
3672
3673
3674
3675
3676 <sect>Macro packages<label id="macropackages"><p>
3677
3678 Using the <tt><ref id=".MACPACK" name=".MACPACK"></tt> directive, predefined
3679 macro packages may be included with just one command. Available macro packages
3680 are:
3681
3682
3683 <sect1><tt>.MACPACK generic</tt><p>
3684
3685 This macro package defines macros that are useful in almost any program.
3686 Currently, two macros are defined:
3687
3688 <tscreen><verb>
3689         .macro  add     Arg
3690                 clc
3691                 adc     Arg
3692         .endmacro
3693
3694         .macro  sub     Arg
3695                 sec
3696                 sbc     Arg
3697         .endmacro
3698 </verb></tscreen>
3699
3700
3701 <sect1><tt>.MACPACK longbranch</tt><p>
3702
3703 This macro package defines long conditional jumps. They are named like the
3704 short counterpart but with the 'b' replaced by a 'j'. Here is a sample
3705 definition for the "<tt/jeq/" macro, the other macros are built using the same
3706 scheme:
3707
3708 <tscreen><verb>
3709         .macro  jeq     Target
3710                 .if     .def(Target) .and ((*+2)-(Target) <= 127)
3711                 beq     Target
3712                 .else
3713                 bne     *+5
3714                 jmp     Target
3715                 .endif
3716         .endmacro
3717 </verb></tscreen>
3718
3719 All macros expand to a short branch, if the label is already defined (back
3720 jump) and is reachable with a short jump. Otherwise the macro expands to a
3721 conditional branch with the branch condition inverted, followed by an absolute
3722 jump to the actual branch target.
3723
3724 The package defines the following macros:
3725
3726 <tscreen><verb>
3727         jeq, jne, jmi, jpl, jcs, jcc, jvs, jvc
3728 </verb></tscreen>
3729
3730
3731
3732 <sect1><tt>.MACPACK cbm</tt><p>
3733
3734 The cbm macro package will define a macro named <tt/scrcode/. It takes a
3735 string as argument and places this string into memory translated into screen
3736 codes.
3737
3738
3739 <sect1><tt>.MACPACK cpu</tt><p>
3740
3741 This macro package does not define any macros but constants used to examine
3742 the value read from the <tt/<ref id=".CPU" name=".CPU">/ pseudo variable. For
3743 each supported CPU a constant similar to
3744
3745 <tscreen><verb>
3746     CPU_6502
3747     CPU_65SC02
3748     CPU_65C02
3749     CPU_65816
3750     CPU_SUNPLUS
3751     CPU_SWEET16
3752     CPU_HUC6280
3753 </verb></tscreen>
3754
3755 is defined. These constants may be used to determine the exact type of the
3756 currently enabled CPU. In addition to that, for each CPU instruction set,
3757 another constant is defined:
3758
3759 <tscreen><verb>
3760     CPU_ISET_6502
3761     CPU_ISET_65SC02
3762     CPU_ISET_65C02
3763     CPU_ISET_65816
3764     CPU_ISET_SUNPLUS
3765     CPU_ISET_SWEET16
3766     CPU_ISET_HUC6280
3767 </verb></tscreen>
3768
3769 The value read from the <tt/<ref id=".CPU" name=".CPU">/ pseudo variable may
3770 be checked with <tt/<ref id="operators" name=".BITAND">/ to determine if the
3771 currently enabled CPU supports a specific instruction set. For example the
3772 65C02 supports all instructions of the 65SC02 CPU, so it has the
3773 <tt/CPU_ISET_65SC02/ bit set in addition to its native <tt/CPU_ISET_65C02/
3774 bit. Using
3775
3776 <tscreen><verb>
3777         .if (.cpu .bitand CPU_ISET_65SC02)
3778                 lda     (sp)
3779         .else
3780                 ldy     #$00
3781                 lda     (sp),y
3782         .endif
3783 </verb></tscreen>
3784
3785 it is possible to determine if the
3786
3787 <tscreen><verb>
3788                 lda     (sp)
3789 </verb></tscreen>
3790
3791 instruction is supported, which is the case for the 65SC02, 65C02 and 65816
3792 CPUs (the latter two are upwards compatible to the 65SC02).
3793
3794
3795
3796 <sect>Predefined constants<label id="predefined-constants"><p>
3797
3798 For better orthogonality, the assembler defines similar symbols as the
3799 compiler, depending on the target system selected:
3800
3801 <itemize>
3802 <item><tt/__ACE__/ - Target system is <tt/ace/
3803 <item><tt/__APPLE2__/ - Target system is <tt/apple2/
3804 <item><tt/__APPLE2ENH__/ - Target system is <tt/apple2enh/
3805 <item><tt/__ATARI__/ - Target system is <tt/atari/
3806 <item><tt/__ATMOS__/ - Target system is <tt/atmos/
3807 <item><tt/__BBC__/ - Target system is <tt/bbc/
3808 <item><tt/__C128__/ - Target system is <tt/c128/
3809 <item><tt/__C16__/ - Target system is <tt/c16/
3810 <item><tt/__C64__/ - Target system is <tt/c64/
3811 <item><tt/__CBM__/ - Target is a Commodore system
3812 <item><tt/__CBM510__/ - Target system is <tt/cbm510/
3813 <item><tt/__CBM610__/ - Target system is <tt/cbm610/
3814 <item><tt/__GEOS__/ - Target system is <tt/geos/
3815 <item><tt/__LUNIX__/ - Target system is <tt/lunix/
3816 <item><tt/__NES__/ - Target system is <tt/nes/
3817 <item><tt/__PET__/ - Target system is <tt/pet/
3818 <item><tt/__PLUS4__/ - Target system is <tt/plus4/
3819 <item><tt/__SUPERVISION__/ - Target system is <tt/supervision/
3820 <item><tt/__VIC20__/ - Target system is <tt/vic20/
3821 </itemize>
3822
3823
3824 <sect>Structs and unions<label id="structs"><p>
3825
3826 <sect1>Overview<p>
3827
3828 Structs and unions are special forms of <ref id="scopes" name="scopes">.  They
3829 are to some degree comparable to their C counterparts. Both have a list of
3830 members. Each member allocates storage and may optionally have a name, which,
3831 in case of a struct, is the offset from the beginning and, in case of a union,
3832 is always zero.
3833
3834
3835 <sect1>Declaration<p>
3836
3837 Here is an example for a very simple struct with two members and a total size
3838 of 4 bytes:
3839
3840 <tscreen><verb>
3841       .struct Point
3842               xcoord  .word
3843               ycoord  .word
3844       .endstruct
3845 </verb></tscreen>
3846
3847 A union shares the total space between all its members, its size is the same
3848 as that of the largest member.
3849
3850 A struct or union must not necessarily have a name. If it is anonymous, no
3851 local scope is opened, the identifiers used to name the members are placed
3852 into the current scope instead.
3853
3854 A struct may contain unnamed members and definitions of local structs. The
3855 storage allocators may contain a multiplier, as in the example below:
3856
3857 <tscreen><verb>
3858       .struct Circle
3859               .struct Point
3860                       .word   2         ; Allocate two words
3861               .endstruct
3862               Radius  .word
3863       .endstruct
3864 </verb></tscreen>
3865
3866
3867 <sect1>The <tt/.TAG/ keyword<p>
3868
3869 Using the <ref id=".TAG" name=".TAG"> keyword, it is possible to reserve space
3870 for an already defined struct or unions within another struct:
3871
3872 <tscreen><verb>
3873       .struct Point
3874               xcoord  .word
3875               ycoord  .word
3876       .endstruct
3877
3878       .struct Circle
3879               Origin  .tag    Point
3880               Radius  .byte
3881       .endstruct
3882 </verb></tscreen>
3883
3884 Space for a struct or union may be allocated using the <ref id=".TAG"
3885 name=".TAG"> directive.
3886
3887 <tscreen><verb>
3888         C:      .tag    Circle
3889 </verb></tscreen>
3890
3891 Currently, members are just offsets from the start of the struct or union. To
3892 access a field of a struct, the member offset has to be added to the address
3893 of the struct itself:
3894
3895 <tscreen><verb>
3896         lda     C+Circle::Radius        ; Load circle radius into A
3897 </verb></tscreen>
3898
3899 This may change in a future version of the assembler.
3900
3901
3902 <sect1>Limitations<p>
3903
3904 Structs and unions are currently implemented as nested symbol tables (in fact,
3905 they were a by-product of the improved scoping rules). Currently, the
3906 assembler has no idea of types. This means that the <ref id=".TAG"
3907 name=".TAG"> keyword will only allocate space. You won't be able to initialize
3908 variables declared with <ref id=".TAG" name=".TAG">, and adding an embedded
3909 structure to another structure with <ref id=".TAG" name=".TAG"> will not make
3910 this structure accessible by using the '::' operator.
3911
3912
3913
3914 <sect>Module constructors/destructors<label id="condes"><p>
3915
3916 <em>Note:</em> This section applies mostly to C programs, so the explanation
3917 below uses examples from the C libraries. However, the feature may also be
3918 useful for assembler programs.
3919
3920
3921 <sect1>Overview<p>
3922
3923 Using the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
3924 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
3925 name=".INTERRUPTOR"></tt> keywords it it possible to export functions in a
3926 special way. The linker is able to generate tables with all functions of a
3927 specific type. Such a table will <em>only</em> include symbols from object
3928 files that are linked into a specific executable. This may be used to add
3929 initialization and cleanup code for library modules, or a table of interrupt
3930 handler functions.
3931
3932 The C heap functions are an example where module initialization code is used.
3933 All heap functions (<tt>malloc</tt>, <tt>free</tt>, ...) work with a few
3934 variables that contain the start and the end of the heap, pointers to the free
3935 list and so on. Since the end of the heap depends on the size and start of the
3936 stack, it must be initialized at runtime. However, initializing these
3937 variables for programs that do not use the heap are a waste of time and
3938 memory.
3939
3940 So the central module defines a function that contains initialization code and
3941 exports this function using the <tt/.CONSTRUCTOR/ statement. If (and only if)
3942 this module is added to an executable by the linker, the initialization
3943 function will be placed into the table of constructors by the linker. The C
3944 startup code will call all constructors before <tt/main/ and all destructors
3945 after <tt/main/, so without any further work, the heap initialization code is
3946 called once the module is linked in.
3947
3948 While it would be possible to add explicit calls to initialization functions
3949 in the startup code, the new approach has several advantages:
3950
3951 <enum>
3952 <item>
3953 If a module is not included, the initialization code is not linked in and not
3954 called. So you don't pay for things you don't need.
3955
3956 <item>
3957 Adding another library that needs initialization does not mean that the
3958 startup code has to be changed. Before we had module constructors and
3959 destructors, the startup code for all systems had to be adjusted to call the
3960 new initialization code.
3961
3962 <item>
3963 The feature saves memory: Each additional initialization function needs just
3964 two bytes in the table (a pointer to the function).
3965
3966 </enum>
3967
3968
3969 <sect1>Calling order<p>
3970
3971 The symbols are sorted in increasing priority order by the linker when using
3972 one of the builtin linker configurations, so the functions with lower
3973 priorities come first and are followed by those with higher priorities. The C
3974 library runtime subroutine that walks over the function tables calls the
3975 functions starting from the top of the table - which means that functions with
3976 a high priority are called first.
3977
3978 So when using the C runtime, functions are called with high priority functions
3979 first, followed by low priority functions.
3980
3981
3982 <sect1>Pitfalls<p>
3983
3984 When using these special symbols, please take care of the following:
3985
3986 <itemize>
3987
3988 <item>
3989 The linker will only generate function tables, it will not generate code to
3990 call these functions. If you're using the feature in some other than the
3991 existing C environments, you have to write code to call all functions in a
3992 linker generated table yourself. See the <tt/condes/ and <tt/callirq/ modules
3993 in the C runtime for an example on how to do this.
3994
3995 <item>
3996 The linker will only add addresses of functions that are in modules linked to
3997 the executable. This means that you have to be careful where to place the
3998 condes functions. If initialization or an irq handler is needed for a group of
3999 functions, be sure to place the function into a module that is linked in
4000 regardless of which function is called by the user.
4001
4002 <item>
4003 The linker will generate the tables only when requested to do so by the
4004 <tt/FEATURE CONDES/ statement in the linker config file. Each table has to
4005 be requested separately.
4006
4007 <item>
4008 Constructors and destructors may have priorities. These priorities determine
4009 the order of the functions in the table. If your initialization or cleanup code
4010 does depend on other initialization or cleanup code, you have to choose the
4011 priority for the functions accordingly.
4012
4013 <item>
4014 Besides the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
4015 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
4016 name=".INTERRUPTOR"></tt> statements, there is also a more generic command:
4017 <tt><ref id=".CONDES" name=".CONDES"></tt>. This allows to specify an
4018 additional type. Predefined types are 0 (constructor), 1 (destructor) and 2
4019 (interruptor). The linker generates a separate table for each type on request.
4020
4021 </itemize>
4022
4023
4024 <sect>Porting sources from other assemblers<p>
4025
4026 Sometimes it is necessary to port code written for older assemblers to ca65.
4027 In some cases, this can be done without any changes to the source code by
4028 using the emulation features of ca65 (see <tt><ref id=".FEATURE"
4029 name=".FEATURE"></tt>). In other cases, it is necessary to make changes to the
4030 source code.
4031
4032 Probably the biggest difference is the handling of the <tt><ref id=".ORG"
4033 name=".ORG"></tt> directive. ca65 generates relocatable code, and placement is
4034 done by the linker. Most other assemblers generate absolute code, placement is
4035 done within the assembler and there is no external linker.
4036
4037 In general it is not a good idea to write new code using the emulation
4038 features of the assembler, but there may be situations where even this rule is
4039 not valid.
4040
4041 <sect1>TASS<p>
4042
4043 You need to use some of the ca65 emulation features to simulate the behaviour
4044 of such simple assemblers.
4045
4046 <enum>
4047 <item>Prepare your sourcecode like this:
4048
4049 <tscreen><verb>
4050         ; if you want TASS style labels without colons
4051         .feature labels_without_colons
4052
4053         ; if you want TASS style character constants
4054         ; ("a" instead of the default 'a')
4055         .feature loose_char_term
4056
4057                 .word *+2       ; the cbm load address
4058
4059                 [yourcode here]
4060 </verb></tscreen>
4061
4062 notice that the two emulation features are mostly useful for porting
4063 sources originally written in/for TASS, they are not needed for the
4064 actual "simple assembler operation" and are not recommended if you are
4065 writing new code from scratch.
4066
4067 <item>Replace all program counter assignments (which are not possible in ca65
4068 by default, and the respective emulation feature works different from what
4069 you'd expect) by another way to skip to memory locations, for example the
4070 <tt><ref id=".RES" name=".RES"></tt> directive.
4071
4072 <tscreen><verb>
4073         ; *=$2000
4074         .res $2000-*    ; reserve memory up to $2000
4075 </verb></tscreen>
4076
4077 Please note that other than the original TASS, ca65 can never move the program
4078 counter backwards - think of it as if you are assembling to disk with TASS.
4079
4080 <item>Conditional assembly (<tt/.ifeq//<tt/.endif//<tt/.goto/ etc.) must be
4081 rewritten to match ca65 syntax. Most importantly notice that due to the lack
4082 of <tt/.goto/, everything involving loops must be replaced by
4083 <tt><ref id=".REPEAT" name=".REPEAT"></tt>.
4084
4085 <item>To assemble code to a different address than it is executed at, use the
4086 <tt><ref id=".ORG" name=".ORG"></tt> directive instead of
4087 <tt/.offs/-constructs.
4088
4089 <tscreen><verb>
4090         .org $1800
4091
4092         [floppy code here]
4093
4094         .reloc  ; back to normal
4095 </verb></tscreen>
4096
4097 <item>Then assemble like this:
4098
4099 <tscreen><verb>
4100         cl65 --start-addr 0x0ffe -t none myprog.s -o myprog.prg
4101 </verb></tscreen>
4102
4103 Note that you need to use the actual start address minus two, since two bytes
4104 are used for the cbm load address.
4105
4106 </enum>
4107
4108
4109 <sect>Bugs/Feedback<p>
4110
4111 If you have problems using the assembler, if you find any bugs, or if
4112 you're doing something interesting with the assembler, I would be glad to
4113 hear from you. Feel free to contact me by email
4114 (<htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">).
4115
4116
4117
4118 <sect>Copyright<p>
4119
4120 ca65 (and all cc65 binutils) are (C) Copyright 1998-2003 Ullrich von
4121 Bassewitz. For usage of the binaries and/or sources the following
4122 conditions do apply:
4123
4124 This software is provided 'as-is', without any expressed or implied
4125 warranty.  In no event will the authors be held liable for any damages
4126 arising from the use of this software.
4127
4128 Permission is granted to anyone to use this software for any purpose,
4129 including commercial applications, and to alter it and redistribute it
4130 freely, subject to the following restrictions:
4131
4132 <enum>
4133 <item>  The origin of this software must not be misrepresented; you must not
4134         claim that you wrote the original software. If you use this software
4135         in a product, an acknowledgment in the product documentation would be
4136         appreciated but is not required.
4137 <item>  Altered source versions must be plainly marked as such, and must not
4138         be misrepresented as being the original software.
4139 <item>  This notice may not be removed or altered from any source
4140         distribution.
4141 </enum>
4142
4143
4144
4145 </article>
4146
4147
4148