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