1 <!doctype linuxdoc system>
5 <title>Commodore PET-specific information for cc65
7 <url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">,<newline>
8 <url url="mailto:polluks@sdf.lonestar.org" name="Stefan A. Haubenthal">
12 An overview over the PET runtime system as it is implemented for the cc65 C
16 <!-- Table of contents -->
19 <!-- Begin the document -->
23 This file contains an overview of the PET runtime system as it comes with the
24 cc65 C compiler. It describes the memory layout, PET-specific header files,
25 available drivers, and any pitfalls specific to that platform.
27 Please note that PET-specific functions are just mentioned here, they are
28 described in detail in the separate <url url="funcref.html" name="function
29 reference">. Even functions marked as "platform dependent" may be available on
30 more than one platform. Please see the function reference for more
34 <sect>Binary format<p>
36 The standard binary output format generated by the linker for the PET target
37 is a machine language program with a one line BASIC stub, which calls the
38 machine language part via SYS. This means that a program can be loaded as
39 BASIC program and started with RUN. It is of course possible to change this
40 behaviour by using a modified startup file and linker config.
43 <sect>Memory layout<p>
45 cc65 generated programs with the default setup run with the I/O area and the
46 kernal and BASIC ROM enabled, which gives a usable memory range of
47 $0400 - $7FFF (32KB machine).
48 All ROM entry points may be called directly without additional code.
54 The text screen is located at $8000.
57 The C runtime stack is located at $7FFF and growing downwards.
60 The C heap is located at the end of the program and grows towards the C
67 <sect>Platform-specific header files<p>
69 Programs containing PET-specific code may use the <tt/pet.h/ or <tt/cbm.h/
70 header files. Using the later may be an option when writing code for more than
71 one CBM platform, since it includes <tt/pet.h/ and declares several functions
72 common to all CBM platforms.
75 <sect1>PET-specific functions<p>
77 There are currently no special PET functions.
81 <sect1>CBM-specific functions<p>
83 Some functions are available for all (or at least most) of the Commodore
84 machines. See the <url url="funcref.html" name="function reference"> for
85 declaration and usage.
113 <sect1>Hardware access<p>
115 The following pseudo variables declared in the <tt/pet.h/ header file do allow
116 access to hardware located in the address space. Some variables are
117 structures, accessing the struct fields will access the chip registers.
121 <tag><tt/PIA1, PIA2/</tag>
122 Access to the two PIA (peripheral interface adapter) chips is available via
123 the <tt/PIA1/ and <tt/PIA2/ variables. The structure behind these variables
124 is explained in <tt/_pia.h/.
127 The <tt/VIA/ structure allows access to the VIA (versatile interface
128 adapter). See the <tt/_6522.h/ header file located in the include
129 directory for the declaration of the structure.
135 <sect>Loadable drivers<p>
137 The names in the parentheses denote the symbols to be used for static linking of the drivers.
140 <sect1>Graphics drivers<p>
142 No graphics drivers are currently available for the PET.
145 <sect1>Extended memory drivers<p>
147 No extended memory drivers are currently available for the PET.
150 <sect1>Joystick drivers<p>
152 The default drivers, <tt/joy_stddrv (joy_static_stddrv)/, point to <tt/pet-stdjoy.joy (pet_stdjoy_joy)/.
156 <tag><tt/pet-ptvjoy.joy (pet_ptvjoy_joy)/</tag>
157 Driver for the Protovision 4-player adapter contributed by Groepaz. See
158 <url url="http://www.protovision-online.de/hardw/hardwstart.htm"> for prices and
159 building instructions. Up to two joysticks are supported.
161 <tag><tt/pet-stdjoy.joy (pet_stdjoy_joy)/</tag>
162 Driver for the standard PET userport joystick.
167 <sect1>Mouse drivers<p>
169 No mouse drivers are currently available for the PET.
172 <sect1>RS232 device drivers<p>
174 No serial drivers are currently available for the PET.
185 <sect1>Passing arguments to the program<p>
187 Command-line arguments can be passed to <tt/main()/. Since that is not
188 supported directly by BASIC, the following syntax was chosen:
191 RUN:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
195 <item>Arguments are separated by spaces.
196 <item>Arguments may be quoted.
197 <item>Leading and trailing spaces around an argument are ignored. Spaces within
198 a quoted argument are allowed.
199 <item>The first argument passed to <tt/main()/ is the program name.
200 <item>A maximum number of 10 arguments (including the program name) are
205 <sect1>Program return code<p>
207 The program return code (low byte) is passed back to BASIC by use of the
213 The runtime for the PET uses routines marked as <tt/.INTERRUPTOR/ for
214 interrupt handlers. Such routines must be written as simple machine language
215 subroutines and will be called automatically by the interrupt handler code
216 when they are linked into a program. See the discussion of the <tt/.CONDES/
217 feature in the <url url="ca65.html" name="assembler manual">.
220 <sect1>Using extended memory<p>
222 The extended memory at $9000 of the CBM 8x96 may be added to the heap by using
226 /* Check for the existence of RAM */
227 if (PEEK(0x9000) == POKE(0x9000, PEEK(0x9000)+1)) {
228 /* Add it to the heap */
229 _heapadd ((void *) 0x9000, 0x2000);
237 This software is provided 'as-is', without any expressed or implied
238 warranty. In no event will the authors be held liable for any damages
239 arising from the use of this software.
241 Permission is granted to anyone to use this software for any purpose,
242 including commercial applications, and to alter it and redistribute it
243 freely, subject to the following restrictions:
246 <item> The origin of this software must not be misrepresented; you must not
247 claim that you wrote the original software. If you use this software
248 in a product, an acknowledgment in the product documentation would be
249 appreciated but is not required.
250 <item> Altered source versions must be plainly marked as such, and must not
251 be misrepresented as being the original software.
252 <item> This notice may not be removed or altered from any source