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