]> git.sur5r.net Git - cc65/blob - doc/c64.sgml
Fix order of command line arguments: -o should precede -C or -t.
[cc65] / doc / c64.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4
5 <title>Commodore 64 specific information for cc65
6 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
7 <date>2003-09-23
8
9 <abstract>
10 An overview over the C64 runtime system as it is implemented for the cc65 C
11 compiler.
12 </abstract>
13
14 <!-- Table of contents -->
15 <toc>
16
17 <!-- Begin the document -->
18
19 <sect>Overview<p>
20
21 This file contains an overview of the C64 runtime system as it comes with the
22 cc65 C compiler. It describes the memory layout, C64 specific header files,
23 available drivers, and any pitfalls specific to that platform.
24
25 Please note that C64 specific functions are just mentioned here, they are
26 described in detail in the separate <htmlurl url="funcref.html" name="function
27 reference">. Even functions marked as "platform dependent" may be available on
28 more than one platform. Please see the function reference for more
29 information.
30
31
32 <sect>Binary format<p>
33
34 The standard binary output format generated by the linker for the C64 target
35 is a machine language program with a one line BASIC stub, which calls the
36 machine language part via SYS. This means that a program can be loaded as
37 BASIC program and started with RUN. It is of course possible to change this
38 behaviour by using a modified startup file and linker config.
39
40
41 <sect>Memory layout<p>
42
43 cc65 generated programs with the default setup run with the I/O area and the
44 kernal ROM enabled (memory under the kernal may be used for graphics or as
45 extended memory - see the sections about graphics and extended memory
46 drivers). The BASIC ROM is disabled, which gives a usable memory range of
47 &dollar;0800 - &dollar;CFFF. This means that kernal entry points may be called
48 directly, but using the BASIC ROM is not possible without additional code.
49
50 Special locations:
51
52 <descrip>
53   <tag/Text screen/
54   The text screen is located at &dollar;400 (as in the standard setup).
55
56   <tag/Stack/
57   The C runtime stack is located at &dollar;CFFF and growing downwards.
58
59   <tag/Heap/
60   The C heap is located at the end of the program and grows towards the C
61   runtime stack.
62
63 </descrip><p>
64
65
66
67 <sect>Platform specific header files<p>
68
69 Programs containing C64 specific code may use the <tt/c64.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/c64.h/ and declares several functions
72 common to all CBM platforms.
73
74
75 <sect1>C64 specific functions<p>
76
77 The functions listed below are special for the C64. See the <htmlurl
78 url="funcref.html" name="function reference"> for declaration and usage.
79
80 <itemize>
81 <item>get_ostype
82 </itemize>
83
84
85 <sect1>CBM specific functions<p>
86
87 Some functions are available for all (or at least most) of the Commodore
88 machines. See the <htmlurl url="funcref.html" name="function reference"> for
89 declaration and usage.
90
91 <itemize>
92 <item>cbm_close
93 <item>cbm_closedir
94 <item>cbm_k_setlfs
95 <item>cbm_k_setnam
96 <item>cbm_k_load
97 <item>cbm_k_save
98 <item>cbm_k_open
99 <item>cbm_k_close
100 <item>cbm_k_readst
101 <item>cbm_k_chkin
102 <item>cbm_k_ckout
103 <item>cbm_k_basin
104 <item>cbm_k_bsout
105 <item>cbm_k_clrch
106 <item>cbm_load
107 <item>cbm_open
108 <item>cbm_opendir
109 <item>cbm_read
110 <item>cbm_readdir
111 <item>cbm_save
112 <item>cbm_write
113 <item>get_tv
114 </itemize>
115
116
117 <sect1>Hardware access<p>
118
119 The following pseudo variables declared in the <tt/c64.h/ header file do allow
120 access to hardware located in the address space. Some variables are
121 structures, accessing the struct fields will access the chip registers.
122
123 <descrip>
124
125   <tag><tt/VIC/</tag>
126   The <tt/VIC/ structure allows access to the VIC II (the graphics
127   controller). See the <tt/_vic2.h/ header file located in the include
128   directory for the declaration of the structure.
129
130   <tag><tt/SID/</tag>
131   The <tt/SID/ structure allows access to the SID (the sound interface
132   device). See the <tt/_sid.h/ header file located in the include directory
133   for the declaration of the structure.
134
135   <tag><tt/CIA1, CIA2/</tag>
136   Access to the two CIA (complex interface adapter) chips is available via
137   the <tt/CIA1/ and <tt/CIA2/ variables. The structure behind these variables
138   is explained in <tt/_6526.h/.
139
140   <tag><tt/COLOR_RAM/</tag>
141   A character array that mirrors the color RAM of the C64 at &dollar;D800.
142
143 </descrip><p>
144
145
146
147 <sect>Loadable drivers<p>
148
149 <sect1>Graphics drivers<p>
150
151 <em>Note:</em> All available graphics drivers for the TGI interface will use
152 the space below the I/O area and kernal ROM, so you can have hires graphics in
153 the standard setup without any memory loss or need for a changed
154 configuration.
155
156 <descrip>
157   <tag><tt/c64-hi.tgi/</tag>
158   This driver features a resolution of 320*200 with two colors and an
159   adjustable palette (that means that the two colors can be chosen out of a
160   palette of the 16 C64 colors).
161 </descrip><p>
162
163
164 <sect1>Extended memory drivers<p>
165
166 <descrip>
167
168   <tag><tt/c64-c256k.emd/</tag>
169   A driver for the C64 256K memory expansion. This driver offers 768 pages of
170   256 bytes each. Written and contributed by Marco van den Heuvel.
171
172   <tag><tt/c64-dqbb.emd/</tag>
173   A driver for the Double Quick Brown Box cartridge. This driver offers
174   64 pages of 256 bytes each. Written and contributed by Marco van den Heuvel.
175
176   <tag><tt/c64-georam.emd/</tag>
177   A driver for the Berkeley Softworks GeoRam cartridge. The driver will
178   determine the available RAM from the connected cartridge. It supports 64KB
179   up to 2048KB of RAM.
180
181   <tag><tt/c64-isepic.emd/</tag>
182   A driver for the ISEPIC cartridge. This driver offers just 8 pages of 256
183   bytes each. Written and contributed by Marco van den Heuvel.
184
185   <tag><tt/c64-ram.emd/</tag>
186   A driver for the hidden RAM below the I/O area and kernal ROM. Supports 48
187   256 byte pages. Please note that this driver is incompatible with any of the
188   graphics drivers!
189
190   <tag><tt/c64-ramcart.emd/</tag>
191   A driver for the RamCart 64/128 written and contributed by Maciej Witkowiak.
192   Will test the hardware for the available RAM.
193
194   <tag><tt/c64-reu.emd/</tag>
195   A driver for the CBM REUs. The driver will determine from the connected REU
196   if it supports 128KB of RAM or more. In the latter case, 256KB are assumed,
197   but since there are no range checks, the application can use more memory if
198   it has better knowledge about the hardware than the driver.
199
200   <tag><tt/c64-vdc.emd/</tag>
201   A driver for the VDC memory of the C128. Written and contributed by Maciej
202   Witkowiak. Can be used if the program is running in C64 mode of the C128.
203   Autodetects the amount of memory available (16 or 64K) and offers 64 or 256
204   pages of 256 bytes each.
205
206   <tag><tt/dtv-himem.emd/</tag>
207   A driver for the C64 D2TV (the second or PAL version). This driver offers
208   indeed 7680 pages of 256 bytes each.
209
210 </descrip><p>
211
212
213 <sect1>Joystick drivers<p>
214
215 <descrip>
216
217   <tag><tt/c64-hitjoy.joy/</tag>
218   Driver for the Digital Excess & Hitmen adapter contributed by Groepaz. See
219   <htmlurl url="http://www.digitalexcess.de/downloads/productions.php"
220   name="http://www.digitalexcess.de/downloads/productions.php"> on
221   instructions how to build one. Up to four joysticks are supported.
222
223   <tag><tt/c64-ptvjoy.joy/</tag>
224   Driver for the Protovision 4-player adapter contributed by Groepaz. See
225   <htmlurl url="http://www.protovision-online.de/hardw/hardwstart.htm"
226   name="http://www.protovision-online.de/hardw/hardwstart.htm"> for prices and
227   building instructions. Up to four joysticks are supported.
228
229   <tag><tt/c64-stdjoy.joy/</tag>
230   Supports up to two standard joysticks connected to the joysticks port of
231   the C64.
232
233   <tag><tt/c64-numpad.joy/</tag>
234   Supports one joystick emulated by the numberpad of the C128 in C64 mode,
235   the firebutton is labeled &dquot;5&dquot; and ENTER.
236
237 </descrip><p>
238
239
240 <sect1>Mouse drivers<p>
241
242 <descrip>
243
244   <tag><tt/c64-1351.mou/</tag>
245   Supports a standard mouse connected to port #0 of the C64.
246
247   <tag><tt/c64-joy.mou/</tag>
248   Supports a mouse emulated by a standard joystick e.g. 1350 mouse in port
249   #1 of the C64.
250
251   <tag><tt/c64-pot.mou/</tag>
252   Supports a potentiometer device e.g. Koala Pad connected to port #1 of
253   the C64.
254
255 </descrip><p>
256
257
258 <sect1>RS232 device drivers<p>
259
260 <descrip>
261
262   <tag><tt/c64-swlink.ser/</tag>
263   Driver for the SwiftLink cartridge. Supports up to 38400 baud, hardware flow
264   control (RTS/CTS) and interrupt driven receives. Note that because of the
265   peculiarities of the 6551 chip together with the use of the NMI, transmits
266   are not interrupt driven, and the transceiver blocks if the receiver asserts
267   flow control because of a full buffer.
268
269 </descrip><p>
270
271
272
273 <sect>Limitations<p>
274
275
276
277 <sect>Other hints<p>
278
279 <sect1>Passing arguments to the program<p>
280
281 Command line arguments can be passed to <tt/main()/. Since this is not
282 supported by BASIC, the following syntax was chosen:
283
284 <tscreen><verb>
285     RUN:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
286 </verb></tscreen>
287
288 <enum>
289 <item>Arguments are separated by spaces.
290 <item>Arguments may be quoted.
291 <item>Leading and trailing spaces around an argument are ignored. Spaces within
292       a quoted argument are allowed.
293 <item>The first argument passed to <tt/main/ is the program name.
294 <item>A maximum number of 10 arguments (including the program name) are
295       supported.
296 </enum>
297
298
299 <sect1>Program return code<p>
300
301 The program return code (low byte) is passed back to BASIC by use of the
302 <tt/ST/ variable.
303
304
305 <sect1>Interrupts<p>
306
307 The runtime for the C64 uses routines marked as <tt/.CONDES/ type 2 for
308 interrupt handlers. Such routines must be written as simple machine language
309 subroutines and will be called automatically by the interrupt handler code
310 when they are linked into a program. See the discussion of the <tt/.CONDES/
311 feature in the <htmlurl url="ca65.html" name="assembler manual">.
312
313
314
315 <sect>Bugs/Feedback<p>
316
317 If you have problems using the library, if you find any bugs, or if you're
318 doing something interesting with it, I would be glad to hear from you. Feel
319 free to contact me by email (<htmlurl url="mailto:uz@cc65.org"
320 name="uz@cc65.org">).
321
322
323
324 <sect>License<p>
325
326 This software is provided 'as-is', without any expressed or implied
327 warranty.  In no event will the authors be held liable for any damages
328 arising from the use of this software.
329
330 Permission is granted to anyone to use this software for any purpose,
331 including commercial applications, and to alter it and redistribute it
332 freely, subject to the following restrictions:
333
334 <enum>
335 <item>  The origin of this software must not be misrepresented; you must not
336         claim that you wrote the original software. If you use this software
337         in a product, an acknowledgment in the product documentation would be
338         appreciated but is not required.
339 <item>  Altered source versions must be plainly marked as such, and must not
340         be misrepresented as being the original software.
341 <item>  This notice may not be removed or altered from any source
342         distribution.
343 </enum>
344
345 </article>
346
347
348