]> git.sur5r.net Git - cc65/blob - doc/cc65.sgml
275a731684899b15c9ae57391e7b5f9c856867c3
[cc65] / doc / cc65.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4 <title>cc65 Users Guide
5 <author><url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">
6 <date>2000-09-03, 2001-10-02, 2005-08-01
7
8 <abstract>
9 cc65 is a C compiler for 6502 targets. It supports several 6502 based home
10 computers like the Commodore and Atari machines, but it is easily retargetable.
11 </abstract>
12
13 <!-- Table of contents -->
14 <toc>
15
16 <!-- Begin the document -->
17
18
19 <sect>Overview<p>
20
21 cc65 was originally a C compiler for the Atari 8-bit machines written by
22 John R. Dunning. In prior releases I've described the compiler by listing
23 up the changes made by me. I have made many more changes in the meantime
24 (and rewritten major parts of the compiler), so I will no longer do that,
25 since the list would be too large and of no use to anyone. Instead I will
26 describe the compiler in respect to the ANSI/ISO C standard.
27
28 There are separate documents named <url url="library.html"> and <url
29 url="funcref.html"> that cover the library that is available for the compiler.
30 If you know C, and are interested in doing actual programming, the library
31 documentation is probably of much more use than this document.
32
33 If you need some hints for getting the best code out of the compiler, you
34 may have a look at <url url="coding.html"> which covers some code generation
35 issues.
36
37
38
39 <sect>Usage<p>
40
41 The compiler translates C files into files containing assembly code that
42 may be translated by the ca65 macroassembler (for more information about
43 the assembler, have a look at <url url="ca65.html">).
44
45
46 <sect1>Command line option overview<p>
47
48 The compiler may be called as follows:
49
50 <tscreen><verb>
51 ---------------------------------------------------------------------------
52 Usage: cc65 [options] file
53 Short options:
54   -Cl                           Make local variables static
55   -Dsym[=defn]                  Define a symbol
56   -E                            Stop after the preprocessing stage
57   -I dir                        Set an include directory search path
58   -O                            Optimize code
59   -Oi                           Optimize code, inline more code
60   -Or                           Enable register variables
61   -Os                           Inline some known functions
62   -T                            Include source as comment
63   -V                            Print the compiler version number
64   -W warning[,...]              Suppress warnings
65   -d                            Debug mode
66   -g                            Add debug info to object file
67   -h                            Help (this text)
68   -j                            Default characters are signed
69   -mm model                     Set the memory model
70   -o name                       Name the output file
71   -r                            Enable register variables
72   -t sys                        Set the target system
73   -v                            Increase verbosity
74
75 Long options:
76   --add-source                  Include source as comment
77   --bss-name seg                Set the name of the BSS segment
78   --check-stack                 Generate stack overflow checks
79   --code-name seg               Set the name of the CODE segment
80   --codesize x                  Accept larger code by factor x
81   --cpu type                    Set cpu type (6502, 65c02)
82   --create-dep name             Create a make dependency file
83   --create-full-dep name        Create a full make dependency file
84   --data-name seg               Set the name of the DATA segment
85   --debug                       Debug mode
86   --debug-info                  Add debug info to object file
87   --debug-opt name              Debug optimization steps
88   --dep-target target           Use this dependency target
89   --disable-opt name            Disable an optimization step
90   --enable-opt name             Enable an optimization step
91   --help                        Help (this text)
92   --include-dir dir             Set an include directory search path
93   --list-opt-steps              List all optimizer steps and exit
94   --list-warnings               List available warning types for -W
95   --local-strings               Emit string literals immediately
96   --memory-model model          Set the memory model
97   --register-space b            Set space available for register variables
98   --register-vars               Enable register variables
99   --rodata-name seg             Set the name of the RODATA segment
100   --signed-chars                Default characters are signed
101   --standard std                Language standard (c89, c99, cc65)
102   --static-locals               Make local variables static
103   --target sys                  Set the target system
104   --verbose                     Increase verbosity
105   --version                     Print the compiler version number
106   --writable-strings            Make string literals writable
107 ---------------------------------------------------------------------------
108 </verb></tscreen>
109
110
111 <sect1>Command line options in detail<p>
112
113 Here is a description of all the command line options:
114
115 <descrip>
116
117   <label id="option-bss-name">
118   <tag><tt>--bss-name seg</tt></tag>
119
120   Set the name of the bss segment. See also <tt/<ref id="pragma-bss-name"
121   name="#pragma&nbsp;bss-name">/.
122
123
124   <label id="option-check-stack">
125   <tag><tt>--check-stack</tt></tag>
126
127   Tells the compiler to generate code that checks for stack overflows. See
128   <tt/<ref id="pragma-check-stack" name="#pragma&nbsp;check-stack">/ for an
129   explanation of this feature.
130
131
132   <label id="option-code-name">
133   <tag><tt>--code-name seg</tt></tag>
134
135   Set the name of the code segment. See also <tt/<ref id="pragma-code-name"
136   name="#pragma&nbsp;code-name">/
137
138
139   <label id="option-codesize">
140   <tag><tt>--codesize x</tt></tag>
141
142   This options allows finer control about speed vs. size decisions in the code
143   generation and optimization phases. It gives the allowed size increase
144   factor (in percent). The default is 100 when not using <tt/-Oi/ and 200 when
145   using <tt/-Oi/ (<tt/-Oi/ is the same as <tt/-O --codesize&nbsp;200/).
146
147
148   <label id="option--cpu">
149   <tag><tt>--cpu CPU</tt></tag>
150
151   Set the CPU, the compiler generates code for. You may specify "6502" or
152   "65C02" as the CPU. The default depends on the selected target (see option
153   <tt/<ref id="option-t" name="-t">/). It is the 6502 CPU for most targets or
154   if no target has been set. Specifying 65C02 will use a few 65C02
155   instructions when generating code. Don't expect too much from this option:
156   In most cases the difference in size and speed is just 1-2%.
157
158
159   <label id="option-create-dep">
160   <tag><tt>--create-dep name</tt></tag>
161
162   Tells the compiler to generate a file containing the dependency list for the
163   compiled module in makefile syntax. The output is written to a file with the
164   given name. The output does not include system include files (in angle
165   brackets).
166
167
168   <label id="option-create-full-dep">
169   <tag><tt>--create-full-dep name</tt></tag>
170
171   Tells the compiler to generate a file containing the dependency list for the
172   compiled module in makefile syntax. The output is written to a file with the
173   given name. The output does include system include files (in angle
174   brackets).
175
176
177   <label id="option-data-name">
178   <tag><tt>--data-name seg</tt></tag>
179
180   Set the name of the data segment. See also <tt/<ref id="pragma-data-name"
181   name="#pragma&nbsp;data-name">/
182
183
184   <tag><tt>-d, --debug</tt></tag>
185
186   Enables debug mode, something that should not be needed for mere
187   mortals:-)
188
189
190   <label id="option-dep-target">
191   <tag><tt>--dep-target target</tt></tag>
192
193   When generating a dependency file, don't use the actual output file as the
194   target of the dependency, but the file specified with this option. The
195   option has no effect if neither <tt/<ref id="option-create-dep"
196   name="--create-dep">/ nor <tt/<ref id="option-create-full-dep"
197   name="--create-full-dep">/ is specified.
198
199
200   <tag><tt>-D sym[=definition]</tt></tag>
201
202   Define a macro on the command line. If no definition is given, the macro
203   is defined to the value "1".
204
205
206   <tag><tt>-g, --debug-info</tt></tag>
207
208   This will cause the compiler to insert a <tt/.DEBUGINFO/ command into the
209   generated assembler code. This will cause the assembler to include all
210   symbols in a special section in the object file.
211
212
213   <tag><tt>-h, --help</tt></tag>
214
215   Print the short option summary shown above.
216
217
218   <label id="option-list-warnings">
219   <tag><tt>--list-warnings</tt></tag>
220
221   List the names of warning types available for use with <tt><ref
222   id="option-W" name="-W"></tt>.
223
224
225   <label id="option-local-strings">
226   <tag><tt>--local-strings</tt></tag>
227
228   Emit string literals into the rodata segment as soon as they're encountered
229   in the source (even if you do nothing but get the sizeof those strings). The
230   default is to keep string literals until end of assembly, merge read only
231   literals if possible, and then output the literals into the data or rodata
232   segment that is active at that point. Use of this option prevents merging of
233   duplicate strings, but the options that change the name of one of the data
234   segments will work.
235
236   You can also use <tt><ref id="pragma-local-strings"
237   name="#pragma&nbsp;local-strings"></tt> for fine grained control.
238
239
240   <tag><tt>-o name</tt></tag>
241
242   Specify the name of the output file. If you don't specify a name, the
243   name of the C input file is used, with the extension replaced by ".s".
244
245
246   <label id="option-register-vars">
247   <tag><tt>-r, --register-vars</tt></tag>
248
249   <tt/-r/ will make the compiler honor the <tt/register/ keyword. Local
250   variables may be placed in registers (which are actually zero page
251   locations). There is some overhead involved with register variables, since
252   the old contents of the registers must be saved and restored. Since register
253   variables are of limited use without the optimizer, there is also a combined
254   switch: <tt/-Or/ will enable both, the optimizer and register variables.
255
256   For more information about register variables see <ref id="register-vars"
257   name="register variables">.
258
259   The compiler setting can also be changed within the source file by using
260   <tt/<ref id="pragma-register-vars" name="#pragma&nbsp;register-vars">/.
261
262
263   <label id="option-register-space">
264   <tag><tt>--register-space</tt></tag>
265
266   This option takes a numeric parameter and is used to specify, how much
267   zero page register space is available. Please note that just giving this
268   option will not increase or decrease by itself, it will just tell the
269   compiler about the available space. You will have to allocate that space
270   yourself using an assembler module with the necessary allocations, and a
271   linker configuration that matches the assembler module. The default value
272   for this option is 6 (bytes).
273
274   If you don't know what all this means, please don't use this option.
275
276
277   <label id="option-rodata-name">
278   <tag><tt>--rodata-name seg</tt></tag>
279
280   Set the name of the rodata segment (the segment used for readonly data).
281   See also <tt/<ref id="pragma-rodata-name" name="#pragma&nbsp;rodata-name">/
282
283   <label id="option-signed-chars">
284   <tag><tt>-j, --signed-chars</tt></tag>
285
286   Using this option, you can make the default characters signed. Since the
287   6502 has no provisions for sign extending characters (which is needed on
288   almost any load operation), this will make the code larger and slower. A
289   better way is to declare characters explicitly as "signed" if needed. You
290   can also use <tt><ref id="pragma-signed-chars"
291   name="#pragma&nbsp;signed-chars"></tt> for better control of this option.
292
293
294   <label id="option--standard">
295   <tag><tt>--standard std</tt></tag>
296
297   This option allows to set the language standard supported. The argument is
298   one of
299   <descrip>
300     <tag/c89/
301       This disables anything that is illegal in C89/C90. Among those things
302       are <tt>//</tt> comments and the non-standard keywords without
303       underscores. Please note that cc65 is not a fully C89 compliant compiler
304       despite this option. A few more things (like floats) are missing.
305
306     <tag/c99/
307       This enables a few features from the C99 standard. With this option,
308       <tt>//</tt> comments are allowed. It will also cause warnings and even
309       errors in a few situations that are allowed with <tt/--standard c89/.
310       For example, a call to a function without a prototype is an error in
311       this mode.
312
313     <tag/cc65/
314       This is the default mode. It is like c99 mode, but additional features
315       are enabled. Among these are "void data", non-standard keywords without
316       the underlines, unnamed function parameters and the requirement for
317       main() to return an int.
318   </descrip>
319
320   Please note that the compiler does not support the C99 standard and never
321   will. c99 mode is actually c89 mode with a few selected C99 extensions.
322
323
324   <label id="option-t">
325   <tag><tt>-t target, --target target</tt></tag>
326
327   This option is used to set the target system. The target system determines
328   the character set that is used for strings and character constants and the
329   default CPU. The CPU setting can be overriden by use of the <tt/<ref
330   id="option--cpu" name="--cpu">/ option.
331
332   The following target systems are supported:
333
334   <itemize>
335   <item>none
336   <item>apple2
337   <item>apple2enh
338   <item>atari
339   <item>atarixl
340   <item>atmos
341   <item>c16 (works also for the c116 with memory up to 32K)
342   <item>c64
343   <item>c128
344   <item>cbm510 (CBM-II series with 40 column video)
345   <item>cbm610 (all CBM-II II computers with 80 column video)
346   <item>geos-apple
347   <item>geos-cbm
348   <item>lunix
349   <item>lynx
350   <item>nes
351   <item>pet (all CBM PET systems except the 2001)
352   <item>plus4
353   <item>sim6502
354   <item>sim65c02
355   <item>supervision
356   <item>vic20
357   </itemize>
358
359   <tag><tt>-v, --verbose</tt></tag>
360
361   Using this option, the compiler will be somewhat more verbose if errors
362   or warnings are encountered.
363
364
365   <label id="option-writable-strings">
366   <tag><tt>--writable-strings</tt></tag>
367
368   Make string literals writable by placing them into the data segment instead
369   of the rodata segment. You can also use <tt><ref id="pragma-writable-strings"
370   name="#pragma&nbsp;writable-strings"></tt> to control this option from within
371   the source file.
372
373
374   <label id="option-static-locals">
375   <tag><tt>-Cl, --static-locals</tt></tag>
376
377   Use static storage for local variables instead of storage on the stack.
378   Since the stack is emulated in software, this gives shorter and usually
379   faster code, but the code is no longer reentrant. The difference between
380   <tt/-Cl/ and declaring local variables as static yourself is, that
381   initializer code is executed each time, the function is entered. So when
382   using
383
384   <tscreen><verb>
385         void f (void)
386         {
387             unsigned a = 1;
388             ...
389         }
390   </verb></tscreen>
391
392   the variable <tt/a/ will always have the value <tt/1/ when entering the
393   function and using <tt/-Cl/, while in
394
395   <tscreen><verb>
396         void f (void)
397         {
398             static unsigned a = 1;
399             ....
400         }
401   </verb></tscreen>
402
403   the variable <tt/a/ will have the value <tt/1/ only the first time that the
404   function is entered, and will keep the old value from one call of the
405   function to the next.
406
407   You may also use <tt><ref id="pragma-static-locals"
408   name="#pragma&nbsp;static-locals"></tt> to change this setting in your
409   sources.
410
411
412   <label id="option-include-dir">
413   <tag><tt>-I dir, --include-dir dir</tt></tag>
414
415   Set a directory where the compiler searches for include files. You may
416   use this option multiple times to add more than one directory to the
417   search list.
418
419
420   <label id="option-O">
421   <tag><tt>-O, -Oi, -Or, -Os</tt></tag>
422
423   Enable an optimizer run over the produced code.
424
425   Using <tt/-Oi/, the code generator will inline some code where otherwise a
426   runtime functions would have been called, even if the generated code is
427   larger. This will not only remove the overhead for a function call, but will
428   make the code visible for the optimizer. <tt/-Oi/ is an alias for
429   <tt/-O --codesize&nbsp;200/.
430
431   <tt/-Or/ will make the compiler honor the <tt/register/ keyword. Local
432   variables may be placed in registers (which are actually zero page
433   locations). See also the <tt/<ref id="option-register-vars"
434   name="--register-vars">/ command line option, and the <ref
435   id="register-vars" name="discussion of register variables"> below.
436
437   Using <tt/-Os/ will force the compiler to inline some known functions from
438   the C library like strlen. Note: This has two consequences:
439   <p>
440   <itemize>
441   <item>You may not use names of standard C functions in your own code. If you
442         do that, your program is not standard compliant anyway, but using
443         <tt/-Os/ will actually break things.
444         <p>
445   <item>The inlined string and memory functions will not handle strings or
446         memory areas larger than 255 bytes. Similarly, the inlined <tt/is..()/
447         functions will not work with values outside the char. range (such as
448         <tt/EOF/).
449         <p>
450   </itemize>
451   <p>
452   It is possible to concatenate the modifiers for <tt/-O/. For example, to
453   enable register variables and inlining of known functions, you may use
454   <tt/-Ors/.
455
456
457   <tag><tt>-T, --add-source</tt></tag>
458
459   This include the source code as comments in the generated code. This is
460   normally not needed.
461
462
463   <tag><tt>-V, --version</tt></tag>
464
465   Print the version number of the compiler. When submitting a bug report,
466   please include the operating system you're using, and the compiler
467   version.
468
469
470   <label id="option-W">
471   <tag><tt>-W name[,name]</tt></tag>
472
473   This option allows to control warnings generated by the compiler. It is
474   followed by a comma separated list of warnings that should be enabled or
475   disabled. To disable a warning, its name is prefixed by a minus sign. If
476   no such prefix exists, or the name is prefixed by a plus sign, the warning
477   is enabled.
478
479   The following warning names are currently recognized:
480   <descrip>
481   <tag><tt/const-comparison/</tag>
482         Warn if the result of a comparison is constant.
483   <tag><tt/error/</tag>
484         Treat all warnings as errors.
485   <tag><tt/no-effect/</tag>
486         Warn about statements that don't have an effect.
487   <tag><tt/struct-param/</tag>
488         Warn when passing structs by value.
489   <tag><tt/unknown-pragma/</tag>
490         Warn about known #pragmas.
491   <tag><tt/unused-label/</tag>
492         Warn about unused labels.
493   <tag><tt/unused-param/</tag>
494         Warn about unused function parameters.
495   <tag><tt/unused-var/</tag>
496         Warn about unused variables.
497   </descrip>
498
499   The full list of available warning names may be retrieved by using the
500   option <tt><ref id="option-list-warnings" name="--list-warnings"></tt>.
501
502   You may also use <tt><ref id="pragma-warn" name="#pragma&nbsp;warn"></tt> to
503   control this setting for smaller pieces of code from within your code.
504
505 </descrip><p>
506
507
508 <sect>Input and output<p>
509
510 The compiler will accept one C file per invocation and create a file with
511 the same base name, but with the extension replaced by ".s". The output
512 file contains assembler code suitable for use with the ca65 macro
513 assembler.
514
515 Include files in quotes are searched in the following places:
516 <enum>
517 <item>The current file's directory.
518 <item>Any directory added with the <tt/-I/ option on the command line.
519 <item>The value of the environment variable <tt/CC65_INC/ if it is defined.
520 </enum>
521
522 Include files in angle brackets are searched in the following places:
523 <enum>
524 <item>Any directory added with the <tt/-I/ option on the command line.
525 <item>The value of the environment variable <tt/CC65_INC/ if it is defined.
526 <item>A subdirectory named <tt/include/ of the directory defined in the
527       environment variable <tt/CC65_HOME/, if it is defined.
528 <item>An optionally compiled-in directory.
529 </enum>
530
531
532
533 <sect>Differences to the ISO standard<p>
534
535 Apart from the things listed below, the compiler does support additional
536 keywords, has several functions in the standard headers with names outside the
537 reserved namespace and a few syntax extensions. All these can be disabled with
538 the <tt><ref id="option--standard" name="--standard"></tt> command line
539 option. Its use for maximum standards compatibility is advised.
540
541 Here is a list of differences between the language, the compiler accepts,
542 and the one defined by the ISO standard:
543
544 <itemize>
545
546 <item>  The datatypes "float" and "double" are not available.
547         <p>
548 <item>  C Functions may not return structs (or unions), and structs may not
549         be passed as parameters by value. However, struct assignment *is*
550         possible.
551         <p>
552 <item>  Part of the C library is available only with fastcall calling
553         conventions (see below).  It means that you must not mix pointers to
554         those functions with pointers to user-written, not-fastcall functions.
555         <p>
556 <item>  The <tt/volatile/ keyword doesn't have an effect. This is not as bad
557         as it sounds, since the 6502 has so few registers that it isn't
558         possible to keep values in registers anyway.
559         <p>
560 </itemize>
561
562 There may be some more minor differences I'm currently not aware of. The
563 biggest problem is the missing float data type. With this limitation in
564 mind, you should be able to write fairly portable code.
565
566
567
568 <sect>Extensions<p>
569
570 This cc65 version has some extensions to the ISO C standard.
571
572 <itemize>
573
574 <item>  The compiler allows to insert assembler statements into the output
575         file. The syntax is
576
577         <tscreen><verb>
578         asm (&lt;string literal&gt;[, optional parameters]) ;
579         </verb></tscreen>
580         or
581         <tscreen><verb>
582         __asm__ (&lt;string literal&gt;[, optional parameters]) ;
583         </verb></tscreen>
584
585         The first form is in the user namespace and is disabled if the <tt/-A/
586         switch is given.
587
588         There is a whole section covering inline assembler statements,
589         <ref id="inline-asm" name="see there">.
590         <p>
591
592 <item>  There is a special calling convention named "fastcall".
593         The syntax for a function declaration using fastcall is
594
595         <tscreen><verb>
596         &lt;return type&gt; fastcall &lt;function name&gt; (&lt;parameter list&gt;)
597         </verb></tscreen>
598         or
599         <tscreen><verb>
600         &lt;return type&gt; __fastcall__ &lt;function name&gt; (&lt;parameter list&gt;)
601         </verb></tscreen>
602         An example would be
603         <tscreen><verb>
604         void __fastcall__ f (unsigned char c)
605         </verb></tscreen>
606         The first form of the fastcall keyword is in the user namespace and can
607         therefore be disabled with the <tt><ref id="option--standard"
608         name="--standard"></tt> command line option.
609
610         For functions declared as <tt/fastcall/, the rightmost parameter is not
611         pushed on the stack but left in the primary register when the function
612         is called. This will reduce the cost when calling assembler functions
613         significantly, especially when the function itself is rather small.
614         <p>
615
616 <item>  There are two pseudo variables named <tt/__AX__/ and <tt/__EAX__/.
617         Both refer to the primary register that is used by the compiler to
618         evaluate expressions or return function results. <tt/__AX__/ is of
619         type <tt/unsigned int/ and <tt/__EAX__/ of type <tt/long unsigned int/
620         respectively. The pseudo variables may be used as lvalue and rvalue as
621         every other variable. They are most useful together with short
622         sequences of assembler code. For example, the macro
623
624         <tscreen><verb>
625         #define hi(x)           \
626             (__AX__ = (x),      \
627              asm ("txa"),       \
628              asm ("ldx #$00"),  \
629              __AX__)
630         </verb></tscreen>
631
632         will give the high byte of any unsigned value.
633         <p>
634
635 <item>  Inside a function, the identifier <tt/__func__/ gives the name of the
636         current function as a string. Outside of functions, <tt/__func__/ is
637         undefined.
638         Example:
639
640         <tscreen><verb>
641         #define PRINT_DEBUG(s)  printf ("%s: %s\n", __func__, s);
642         </verb></tscreen>
643
644         The macro will print the name of the current function plus a given
645         string.
646         <p>
647
648 <item>  cc65 allows the initialization of <tt/void/ variables. This may be
649         used to create variable structures that are more compatible with
650         interfaces written for assembler languages. Here is an example:
651
652         <tscreen><verb>
653         void GCmd = {   (char)3, (unsigned)0x2000, (unsigned)0x3000 };
654         </verb></tscreen>
655
656         This will be translated as follows:
657
658         <tscreen><verb>
659         _GCmd:
660                 .byte   3
661                 .word   $2000
662                 .word   $3000
663         </verb></tscreen>
664
665         Since the variable is of type <tt/void/ you may not use it as is.
666         However, taking the address of the variable results in a <tt/void*/
667         which may be passed to any function expecting a pointer.
668
669         See the <url url="geos.html" name="GEOS library document"> for examples
670         on how to use this feature.
671         <p>
672
673 <item>  cc65 implements flexible array struct members as defined in the C99 ISO
674         standard. As an extension, these fields may be initialized. There are
675         several exceptions, however (which is probably the reason why the
676         standard does not define this feature, because it is highly
677         unorthogonal). Flexible array members cannot be initialized ...
678
679         <itemize>
680         <item>... when defining an array of structs with flexible
681                 members.
682         <item>... if such a struct is a member field of another struct
683                 which is not the last field.
684         <item>... if the struct which contains a flexible array member is
685                 declared as <tt/register/, and the size and compiler settings
686                 do allow the compiler actually to place the struct into the
687                 register bank in the zero page.
688         </itemize>
689
690         Please note that -- as defined in the ISO C standard -- the <tt/sizeof/
691         operator returns the struct size with the flexible array member having
692         size zero, even if it is initialized.
693         <p>
694
695 </itemize>
696 <p>
697
698
699 <sect>Predefined macros<p>
700
701 The compiler defines several macros at startup:
702
703 <descrip>
704   <tag><tt>__APPLE2__</tt></tag>
705
706   This macro is defined if the target is the Apple ][ (-t apple2) or the enhanced Apple //e (-t apple2enh).
707
708   <tag><tt>__APPLE2ENH__</tt></tag>
709
710   This macro is defined if the target is the enhanced Apple //e (-t apple2enh).
711
712   <tag><tt>__ATARI__</tt></tag>
713
714   This macro is defined if the target is the Atari 400/800 (-t atari) or the Atari 800XL/130XE (-t atarixl).
715
716   <tag><tt>__ATARIXL__</tt></tag>
717
718   This macro is defined if the target is the Atari 800XL/130XE (-t atarixl).
719
720   <tag><tt>__ATMOS__</tt></tag>
721
722   This macro is defined if the target is the Oric Atmos (-t atmos).
723
724   <tag><tt>__C128__</tt></tag>
725
726   This macro is defined if the target is the Commodore 128 (-t c128).
727
728   <tag><tt>__C16__</tt></tag>
729
730   This macro is defined if the target is the Commodore 16/116 (-t c16) or the Commodore Plus/4 (-t plus4).
731
732   <tag><tt>__C64__</tt></tag>
733
734   This macro is defined if the target is the Commodore 64 (-t c64).
735
736   <tag><tt>__CBM__</tt></tag>
737
738   This macro is defined if the target system is one of the CBM targets.
739
740   <tag><tt>__CBM510__</tt></tag>
741
742   This macro is defined if the target is the CBM 500 series of computers.
743
744   <tag><tt>__CBM610__</tt></tag>
745
746   This macro is defined if the target is one of the CBM 600/700 family of
747   computers (called B series in the US).
748
749   <tag><tt>__CC65__</tt></tag>
750
751   This macro is always defined. Its value is the version number of the
752   compiler in hex.  For example, version 2.14 of the compiler has this macro
753   defined as <tt/0x02E0/.
754
755   <tag><tt>__CC65_STD__</tt></tag>
756
757   This macro is defined to one of the following depending on the <tt><ref
758   id="option--standard" name="--standard"></tt> command line option:
759   <itemize>
760   <item><tt/__CC65_STD_C89__/
761   <item><tt/__CC65_STD_C99__/
762   <item><tt/__CC65_STD_CC65__/
763   </itemize>
764
765   <tag><tt>__DATE__</tt></tag>
766
767   This macro expands to the date of translation of the preprocessing
768   translation unit in the form "Mmm dd yyyy".
769
770   <tag><tt>__FILE__</tt></tag>
771
772   This macro expands to a string containing the name of the C source file.
773
774   <tag><tt>__GEOS__</tt></tag>
775
776   This macro is defined if you are compiling for one of the GEOS systems.
777
778   <tag><tt>__GEOS_APPLE__</tt></tag>
779
780   This macro is defined if you are compiling for the Apple GEOS system (-t geos-apple).
781
782   <tag><tt>__GEOS_CBM__</tt></tag>
783
784   This macro is defined if you are compiling for the GEOS 64/128 system (-t geos-cbm).
785
786   <tag><tt>__LINE__</tt></tag>
787
788   This macro expands to the current line number.
789
790   <tag><tt>__LUNIX__</tt></tag>
791
792   This macro is defined if you are compiling for the LUnix system (-t lunix).
793
794   <tag><tt>__LYNX__</tt></tag>
795
796   This macro is defined if the target is the Atari Lynx (-t lynx).
797
798   <tag><tt>__NES__</tt></tag>
799
800   This macro is defined if the target is the Nintendo Entertainment System (-t nes).
801
802   <tag><tt>__OPT__</tt></tag>
803
804   Is defined if the compiler was called with the <tt/-O/ command line option.
805
806   <tag><tt>__OPT_i__</tt></tag>
807
808   Is defined if the compiler was called with the <tt/-Oi/ command line option.
809
810   <tag><tt>__OPT_r__</tt></tag>
811
812   Is defined if the compiler was called with the <tt/-Or/ command line option.
813
814   <tag><tt>__OPT_s__</tt></tag>
815
816   Is defined if the compiler was called with the <tt/-Os/ command line option.
817
818   <tag><tt>__PET__</tt></tag>
819
820   This macro is defined if the target is the PET family of computers (-t pet).
821
822   <tag><tt>__PLUS4__</tt></tag>
823
824   This macro is defined if the target is the Commodore Plus/4 (-t plus4).
825
826   <tag><tt>__STDC_HOSTED__</tt></tag>
827
828   This macro is expands to the integer constant 1.
829
830   <tag><tt>__SIM6502__</tt></tag>
831
832   This macro is defined if the target is sim65 in 6502 mode (-t sim6502).
833
834   <tag><tt>__SIM65C02__</tt></tag>
835   This macro is defined if the target is sim65 in 65C02 mode (-t sim65c02).
836
837   <tag><tt>__SUPERVISION__</tt></tag>
838
839   This macro is defined if the target is the Supervision (-t supervision).
840
841   <tag><tt>__TIME__</tt></tag>
842
843   This macro expands to the time of translation of the preprocessing
844   translation unit in the form "hh:mm:ss".
845
846   <tag><tt>__VIC20__</tt></tag>
847
848   This macro is defined if the target is the Commodore VIC20 (-t vic20).
849 </descrip>
850
851
852 <sect>&num;pragmas<label id="pragmas"><p>
853
854 The compiler understands some pragmas that may be used to change code
855 generation and other stuff. Some of these pragmas understand a special form:
856 If the first parameter is <tt/push/, the old value is saved onto a stack
857 before changing it. The value may later be restored by using the <tt/pop/
858 parameter with the <tt/#pragma/.
859
860 <sect1><tt>#pragma bss-name (&lsqb;push,&rsqb; &lt;name&gt;)</tt><label id="pragma-bss-name"><p>
861
862   This pragma changes the name used for the BSS segment (the BSS segment
863   is used to store uninitialized data). The argument is a string enclosed
864   in double quotes.
865
866   Note: The default linker configuration file does only map the standard
867   segments. If you use other segments, you have to create a new linker
868   configuration file.
869
870   Beware: The startup code will zero only the default BSS segment. If you
871   use another BSS segment, you have to do that yourself, otherwise
872   uninitialized variables do not have the value zero.
873
874   The <tt/#pragma/ understands the push and pop parameters as explained above.
875
876   Example:
877   <tscreen><verb>
878         #pragma bss-name ("MyBSS")
879   </verb></tscreen>
880
881
882 <sect1><tt>#pragma charmap (&lt;index&gt;, &lt;code&gt;)</tt><label id="pragma-charmap"><p>
883
884   Each literal string and each literal character in the source is translated
885   by use of a translation table. This translation table is preset when the
886   compiler is started depending on the target system, for example to map
887   ISO-8859-1 characters into PETSCII if the target is a commodore machine.
888
889   This pragma allows to change entries in the translation table, so the
890   translation for individual characters, or even the complete table may be
891   adjusted.
892
893   Both arguments are assumed to be unsigned characters with a valid range of
894   1-255.
895
896   Beware of two pitfalls:
897
898     <itemize>
899     <item>The character index is actually the code of the character in the
900           C source, so character mappings do always depend on the source
901           character set. This means that <tt/#pragma&nbsp;charmap/ is not
902           portable -- it depends on the build environment.
903     <item>While it is possible to use character literals as indices, the
904           result may be somewhat unexpected, since character literals are
905           itself translated. For this reason I would suggest to avoid
906           character literals and use numeric character codes instead.
907     </itemize>
908
909   Example:
910   <tscreen><verb>
911         /* Use a space wherever an 'a' occurs in ISO-8859-1 source */
912         #pragma charmap (0x61, 0x20);
913   </verb></tscreen>
914
915
916 <sect1><tt>#pragma check-stack ([push,] on|off)</tt><label id="pragma-check-stack"><p>
917
918   Tells the compiler to insert calls to a stack checking subroutine to detect
919   stack overflows. The stack checking code will lead to somewhat larger and
920   slower programs, so you may want to use this pragma when debugging your
921   program and switch it off for the release version. If a stack overflow is
922   detected, the program is aborted.
923
924   If the argument is "off", stack checks are disabled (the default), otherwise
925   they're enabled.
926
927   The <tt/#pragma/ understands the push and pop parameters as explained above.
928
929 <sect1><tt>#pragma code-name ([push,] &lt;name&gt;)</tt><label id="pragma-code-name"><p>
930
931   This pragma changes the name used for the CODE segment (the CODE segment
932   is used to store executable code). The argument is a string enclosed in
933   double quotes.
934
935   Note: The default linker configuration file does only map the standard
936   segments. If you use other segments, you have to create a new linker
937   configuration file.
938
939   The <tt/#pragma/ understands the push and pop parameters as explained above.
940
941   Example:
942   <tscreen><verb>
943         #pragma code-name ("MyCODE")
944   </verb></tscreen>
945
946
947 <sect1><tt>#pragma codesize ([push,] &lt;int&gt;)</tt><label id="pragma-codesize"><p>
948
949   This pragma allows finer control about speed vs. size decisions in the code
950   generation and optimization phase. It gives the allowed size increase factor
951   (in percent). The default is can be changed by use of the <tt/<ref
952   id="option-codesize" name="--codesize">/ compiler option.
953
954   The <tt/#pragma/ understands the push and pop parameters as explained above.
955
956
957 <sect1><tt>#pragma data-name ([push,] &lt;name&gt;)</tt><label id="pragma-data-name"><p>
958
959   This pragma changes the name used for the DATA segment (the DATA segment
960   is used to store initialized data). The argument is a string enclosed in
961   double quotes.
962
963   Note: The default linker configuration file does only map the standard
964   segments. If you use other segments, you have to create a new linker
965   configuration file.
966
967   The <tt/#pragma/ understands the push and pop parameters as explained above.
968
969   Example:
970   <tscreen><verb>
971         #pragma data-name ("MyDATA")
972   </verb></tscreen>
973
974
975 <sect1><tt>#pragma local-strings ([push,] on|off)</tt><label id="pragma-local-strings"><p>
976
977   When "on", emit string literals to the data segment when they're encountered
978   in the source. The default ("off") is to keep string literals until end of
979   assembly, merge read only literals if possible, and then output the literals
980   into the data or rodata segment that is active at that point.
981
982   Using this <tt/#pragma/ it is possible to control the behaviour from within
983   the source. When <tt/#pragma local-strings/ is active, string literals are
984   output immediately, which means that they go into the currently active data
985   or rodata segment, but cannot be merged. When inactive, string literals are
986   remembered and output as a whole when translation is finished.
987
988
989 <sect1><tt>#pragma optimize ([push,] on|off)</tt><label id="pragma-optimize"><p>
990
991   Switch optimization on or off. If the argument is "off", optimization is
992   disabled, otherwise it is enabled. Please note that this pragma only effects
993   whole functions. The setting in effect when the function is encountered will
994   determine if the generated code is optimized or not.
995
996   Optimization and code generation is also controlled by the <ref
997   id="pragma-codesize" name="codesize pragma">.
998
999   The default is "off", but may be changed with the <tt/<ref name="-O"
1000   id="option-O">/ compiler option.
1001
1002   The <tt/#pragma/ understands the push and pop parameters as explained above.
1003
1004
1005 <sect1><tt>#pragma rodata-name ([push,] &lt;name&gt;)</tt><label id="pragma-rodata-name"><p>
1006
1007   This pragma changes the name used for the RODATA segment (the RODATA
1008   segment is used to store readonly data). The argument is a string
1009   enclosed in double quotes.
1010
1011   Note: The default linker configuration file does only map the standard
1012   segments. If you use other segments, you have to create a new linker
1013   configuration file.
1014
1015   The <tt/#pragma/ understands the push and pop parameters as explained above.
1016
1017   Example:
1018   <tscreen><verb>
1019         #pragma rodata-name ("MyRODATA")
1020   </verb></tscreen>
1021
1022
1023 <sect1><tt>#pragma regvaraddr ([push,] on|off)</tt><label id="pragma-regvaraddr"><p>
1024
1025   The compiler does not allow to take the address of register variables.
1026   The regvaraddr pragma changes this. Taking the address of a register
1027   variable is allowed after using this pragma with "on" as argument.
1028   Using "off" as an argument switches back to the default behaviour.
1029
1030   Beware: The C standard does not allow taking the address of a variable
1031   declared as register. So your programs become non-portable if you use
1032   this pragma. In addition, your program may not work. This is usually the
1033   case if a subroutine is called with the address of a register variable,
1034   and this subroutine (or a subroutine called from there) uses
1035   register variables. So be careful with this #pragma.
1036
1037   The <tt/#pragma/ understands the push and pop parameters as explained above.
1038
1039   Example:
1040   <tscreen><verb>
1041         #pragma regvaraddr(on)  /* Allow taking the address
1042                                  * of register variables
1043                                  */
1044   </verb></tscreen>
1045
1046
1047 <sect1><tt>#pragma register-vars ([push,] on|off)</tt><label id="pragma-register-vars"><p>
1048
1049   Enables or disables use of register variables. If register variables are
1050   disabled (the default), the <tt/register/ keyword is ignored. Register
1051   variables are explained in more detail in <ref id="register-vars" name="a separate
1052   chapter">.
1053
1054   The <tt/#pragma/ understands the push and pop parameters as explained above.
1055
1056
1057 <sect1><tt>#pragma signed-chars ([push,] on|off)</tt><label id="pragma-signed-chars"><p>
1058
1059   Changes the signedness of the default character type. If the argument is
1060   "on", default characters are signed, otherwise characters are unsigned. The
1061   compiler default is to make characters unsigned since this creates a lot
1062   better code. This default may be overridden by the <tt/<ref
1063   name="--signed-chars" id="option-signed-chars">/ command line option.
1064
1065   The <tt/#pragma/ understands the push and pop parameters as explained above.
1066
1067
1068 <sect1><tt>#pragma static-locals ([push,] on|off)</tt><label id="pragma-static-locals"<p>
1069
1070   Use variables in the bss segment instead of variables on the stack. This
1071   pragma changes the default set by the compiler option <tt/<ref
1072   name="--static-locals" id="option-static-locals">/. If the argument is "on",
1073   local variables are allocated in the BSS segment, leading to shorter and in
1074   most cases faster, but non-reentrant code.
1075
1076   The <tt/#pragma/ understands the push and pop parameters as explained above.
1077
1078
1079 <sect1><tt>#pragma warn (name, [push,] on|off)</tt><label id="pragma-warn"><p>
1080
1081   Switch compiler warnings on or off. "name" is the name of a warning (see the
1082   <tt/<ref name="-W" id="option-W">/ compiler option for a list). The name is
1083   either followed by "pop", which restores the last pushed state, or by "on" or
1084   "off", optionally preceeded by "push" to push the current state before
1085   changing it.
1086
1087   Example:
1088   <tscreen><verb>
1089         /* Don't warn about the unused parameter in function func */
1090         #pragma warn (unused-param, push, off)
1091         static int func (int unused)
1092         {
1093             return 0;
1094         }
1095         #pragma warn (unused-param, pop)
1096   </verb></tscreen>
1097
1098 <sect1><tt>#pragma writable-strings ([push,] on|off)</tt><label id="pragma-writable-strings"><p>
1099
1100   Changes the storage location of string literals. For historical reasons,
1101   the C standard defines that string literals are of type "char[]", but
1102   writing to such a literal causes undefined behaviour. Most compilers
1103   (including cc65) place string literals in the read-only data segment, which
1104   may cause problems with old C code that writes to string literals.
1105
1106   Using this pragma (or the corresponding command line option <tt/<ref
1107   name="--writable-strings" id="option-writable-strings">/) causes the
1108   literals to be placed in the data segment so they can be written to without
1109   worry.
1110
1111   The <tt/#pragma/ understands the push and pop parameters as explained above.
1112
1113
1114 <sect1><tt>#pragma zpsym (&lt;name&gt;)</tt><p>
1115
1116   Tell the compiler that the -- previously as external declared -- symbol with
1117   the given name is a zero page symbol (usually from an assembler file).
1118   The compiler will create a matching import declaration for the assembler.
1119
1120   Example:
1121   <tscreen><verb>
1122         extern int foo;
1123         #pragma zpsym ("foo");  /* foo is in the zeropage */
1124   </verb></tscreen>
1125
1126
1127
1128
1129 <sect>Register variables<label id="register-vars"><p>
1130
1131 The runtime for all supported platforms has 6 bytes of zero page space
1132 available for register variables (this could be increased, but I think it's a
1133 good value). So you can declare register variables up to a total size of 6 per
1134 function. The compiler will allocate register space on a "first come, first
1135 served" base and convert any <tt/register/ declarations that exceed the
1136 available register space silently to <tt/auto/. Parameters can also be
1137 declared as <tt/register/, this will in fact give slightly shorter code than
1138 using a register variable.
1139
1140 Since a function must save the current values of the registers on entry and
1141 restore them on exit, there is an overhead associated with register variables,
1142 and this overhead is quite high (about 20 bytes per variable). This means that
1143 just declaring anything as <tt/register/ is not a good idea.
1144
1145 The best use for register variables are pointers, especially those that point
1146 to structures. The magic number here is about 3 uses of a struct field: If the
1147 function contains this number or even more, the generated code will be usually
1148 shorter and faster when using a register variable for the struct pointer. The
1149 reason for this is that the register variable can in many cases be used as a
1150 pointer directly. Having a pointer in an auto variable means that this pointer
1151 must first be copied into a zero page location, before it can be dereferenced.
1152
1153 Second best use for register variables are counters. However, there is not
1154 much difference in the code generated for counters, so you will need at least
1155 100 operations on this variable (for example in a loop) to make it worth the
1156 trouble. The only savings you get here are by the use of a zero page variable
1157 instead of one on the stack or in the data segment.
1158
1159 Register variables must be explicitly enabled, either by using <tt/<ref
1160 name="-Or" id="option-O">/ or <tt/<ref name="--register-vars"
1161 id="option-register-vars">/ on the command line or by use of <tt/<ref
1162 name="#pragma register-vars" id="pragma-register-vars">/. Register variables
1163 are only accepted on function top level, register variables declared in
1164 interior blocks are silently converted to <tt/auto/. With register variables
1165 disabled, all variables declared as <tt/register/ are actually auto variables.
1166
1167 Please take care when using register variables: While they are helpful and can
1168 lead to a tremendous speedup when used correctly, improper usage will cause
1169 bloated code and a slowdown.
1170
1171
1172
1173 <sect>Inline assembler<label id="inline-asm"><p>
1174
1175 The compiler allows to insert assembler statements into the output file. The
1176 syntax is
1177
1178 <tscreen><verb>
1179         asm (&lt;string literal&gt;[, optional parameters]) ;
1180 </verb></tscreen>
1181 or
1182 <tscreen><verb>
1183         __asm__ (&lt;string literal&gt;[, optional parameters]) ;
1184 </verb></tscreen>
1185 <p>
1186
1187 The first form is in the user namespace and is disabled by <tt><ref
1188 id="option--standard" name="--standard"></tt> if the argument is not <tt/cc65/.
1189
1190 The asm statement may be used inside a function and on global file level. An
1191 inline assembler statement is a primary expression, so it may also be used as
1192 part of an expression. Please note however that the result of an expression
1193 containing just an inline assembler statement is always of type <tt/void/.
1194
1195 The contents of the string literal are preparsed by the compiler and inserted
1196 into the generated assembly output, so that the can be further processed by
1197 the backend and especially the optimizer. For this reason, the compiler does
1198 only allow regular 6502 opcodes to be used with the inline assembler. Pseudo
1199 instructions (like <tt/.import/, <tt/.byte/ and so on) are <em/not/ allowed,
1200 even if the ca65 assembler (which is used to translate the generated assembler
1201 code) would accept them. The builtin inline assembler is not a replacement for
1202 the full blown macro assembler which comes with the compiler.
1203
1204 Note: Inline assembler statements are subject to all optimizations done by the
1205 compiler. There is currently no way to protect an inline assembler statement
1206 from being moved or removed completely by the optimizer. If in doubt, check
1207 the generated assembler output, or disable optimizations.
1208
1209 The string literal may contain format specifiers from the following list. For
1210 each format specifier, an argument is expected which is inserted instead of
1211 the format specifier before passing the assembly code line to the backend.
1212
1213 <itemize>
1214   <item><tt/%b/ - Numerical 8-bit value
1215   <item><tt/%w/ - Numerical 16-bit value
1216   <item><tt/%l/ - Numerical 32-bit value
1217   <item><tt/%v/ - Assembler name of a global variable or function
1218   <item><tt/%o/ - Stack offset of a local variable
1219   <item><tt/%g/ - Assembler name of a C label
1220   <item><tt/%s/ - The argument is converted to a string
1221   <item><tt/%%/ - The % sign itself
1222 </itemize><p>
1223
1224 Using these format specifiers, you can access C <tt/#defines/, variables or
1225 similar stuff from the inline assembler. For example, to load the value of
1226 a C <tt/#define/ into the Y register, one would use
1227
1228 <tscreen><verb>
1229         #define OFFS  23
1230         __asm__ ("ldy #%b", OFFS);
1231 </verb></tscreen>
1232
1233 Or, to access a struct member of a static variable:
1234
1235 <tscreen><verb>
1236         typedef struct {
1237             unsigned char x;
1238             unsigned char y;
1239             unsigned char color;
1240         } pixel_t;
1241         static pixel_t pixel;
1242         __asm__ ("ldy #%b", offsetof(pixel_t, color));
1243         __asm__ ("lda %v,y", pixel);
1244 </verb></tscreen>
1245 <p>
1246 The next example shows how to use global variables to exchange data between C
1247 an assembler and how to handle assembler jumps:
1248
1249 <tscreen><verb>
1250         unsigned char globalSubA, globalSubB, globalSubResult;
1251
1252         /* return a-b, return 255 if b>a */
1253         unsigned char sub (unsigned char a, unsigned char b)
1254         {
1255             globalSubA = a;
1256             globalSubB = b;
1257             __asm__ ("sec");
1258             __asm__ ("lda %v", globalSubA);
1259             __asm__ ("sbc %v", globalSubB);
1260             __asm__ ("bcs %g", jumpSubNoError);
1261             __asm__ ("lda #$FF");
1262         jumpSubNoError:
1263             __asm__ ("sta %v", globalSubResult);
1264             return globalSubResult;
1265         }
1266 </verb></tscreen>
1267 <p>
1268
1269 Arrays can also be accessed:
1270
1271 <tscreen><verb>
1272         unsigned char globalSquareTable[] = {
1273             0, 1, 4, 9, 16, 25, 36, 49, 64, 81,
1274             100, 121, 144, 169, 196, 225
1275         };
1276         unsigned char globalSquareA, globalSquareResult;
1277
1278         /* return a*a for a<16, else 255 */
1279         unsigned char square (unsigned char a)
1280         {
1281             if (a>15){
1282                 return 255;
1283             }
1284             globalSquareA = a;
1285             __asm__ ("ldx %v", globalSquareA);
1286             __asm__ ("lda %v,x", globalSquareTable);
1287             __asm__ ("sta %v", globalSquareResult);
1288             return globalSquareResult;
1289         }
1290 </verb></tscreen>
1291 <p>
1292
1293 Note: Do not embed the assembler labels that are used as names of global
1294 variables or functions into your asm statements. Code like this
1295
1296 <tscreen><verb>
1297         int foo;
1298         int bar () { return 1; }
1299         __asm__ ("lda _foo");           /* DON'T DO THAT! */
1300         ...
1301         __asm__ ("jsr _bar");           /* DON'T DO THAT EITHER! */
1302 </verb></tscreen>
1303 <p>
1304
1305 may stop working if the way, the compiler generates these names is changed in
1306 a future version. Instead use the format specifiers from the table above:
1307
1308 <tscreen><verb>
1309         __asm__ ("lda %v", foo);        /* OK */
1310         ...
1311         __asm__ ("jsr %v", bar);        /* OK */
1312 </verb></tscreen>
1313 <p>
1314
1315
1316 <sect>Implementation-defined behavior<p>
1317
1318 This section describes the behavior of cc65 when the standard describes the
1319 behavior as implementation-defined.
1320
1321 (to be done)
1322
1323 <sect>Copyright<p>
1324
1325 This is the original compiler copyright:
1326
1327 <tscreen><verb>
1328 --------------------------------------------------------------------------
1329   -*- Mode: Text -*-
1330
1331      This is the copyright notice for RA65, LINK65, LIBR65, and other
1332   Atari 8-bit programs.  Said programs are Copyright 1989, by John R.
1333   Dunning.  All rights reserved, with the following exceptions:
1334
1335       Anyone may copy or redistribute these programs, provided that:
1336
1337   1:  You don't charge anything for the copy.  It is permissable to
1338       charge a nominal fee for media, etc.
1339
1340   2:  All source code and documentation for the programs is made
1341       available as part of the distribution.
1342
1343   3:  This copyright notice is preserved verbatim, and included in
1344       the distribution.
1345
1346       You are allowed to modify these programs, and redistribute the
1347   modified versions, provided that the modifications are clearly noted.
1348
1349       There is NO WARRANTY with this software, it comes as is, and is
1350   distributed in the hope that it may be useful.
1351
1352       This copyright notice applies to any program which contains
1353   this text, or the refers to this file.
1354
1355       This copyright notice is based on the one published by the Free
1356   Software Foundation, sometimes known as the GNU project.  The idea
1357   is the same as theirs, ie the software is free, and is intended to
1358   stay that way.  Everybody has the right to copy, modify, and re-
1359   distribute this software.  Nobody has the right to prevent anyone
1360   else from copying, modifying or redistributing it.
1361
1362 --------------------------------------------------------------------------
1363 </verb></tscreen>
1364
1365 Small parts of the compiler (parts of the preprocessor and main parser) are
1366 still covered by this copyright. The main portion is covered by the usual
1367 cc65 license, which reads:
1368
1369 This software is provided 'as-is', without any expressed or implied
1370 warranty.  In no event will the authors be held liable for any damages
1371 arising from the use of this software.
1372
1373 Permission is granted to anyone to use this software for any purpose,
1374 including commercial applications, and to alter it and redistribute it
1375 freely, subject to the following restrictions:
1376
1377 <enum>
1378 <item>  The origin of this software must not be misrepresented; you must not
1379         claim that you wrote the original software. If you use this software
1380         in a product, an acknowledgment in the product documentation would be
1381         appreciated but is not required.
1382 <item>  Altered source versions must be plainly marked as such, and must not
1383         be misrepresented as being the original software.
1384 <item>  This notice may not be removed or altered from any source
1385         distribution.
1386 </enum>
1387
1388 </article>
1389