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