]> git.sur5r.net Git - cc65/blob - doc/c128.sgml
Added C128 documentation.
[cc65] / doc / c128.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4
5 <title>C128 specific information for cc65
6 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
7 <date>2003-12-14
8
9 <abstract>
10 An overview over the C128 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 C128 runtime system as it comes with the
22 cc65 C compiler. It describes the memory layout, C128 specific header files,
23 available drivers, and any pitfalls specific to that platform.
24
25 Please note that C128 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 C128 target
35 is a machine language program with a one line BASIC stub. This means that a
36 program can be loaded as BASIC program and started with RUN. It is of course
37 possible to change this behaviour by using a modified startup file and linker
38 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. Note that this is a non standard memory layout, and that
45 there is no "memory configuration index" for this layout. This means that
46 special case has to be taken when changing the configuration, or calling any
47 code that does this. The memory configuration register at &dollar;FF00 should
48 be saved and restored instead of relying on the memory configuration index
49 stored in the zero page.
50
51 The setup gives a usable memory range of &dollar;1C00 - &dollar;CFFF. Having
52 just the kernal ROM mapped in means, that kernal entry points may be called
53 directly, but using the BASIC ROM is not possible without additional code.
54
55 Special locations:
56
57 <descrip>
58   <tag/Text screen/
59   The text screen is located at &dollar;400 (as in the standard setup).
60
61   <tag/Stack/
62   The C runtime stack is located at &dollar;CFFF and growing downwards.
63
64   <tag/Heap/
65   The C heap is located at the end of the program and grows towards the C
66   runtime stack.
67
68 </descrip><p>
69
70
71
72 <sect>Platform specific header files<p>
73
74 Programs containing C128 specific code may use the <tt/c128.h/ or <tt/cbm.h/
75 header files. Using the later may be an option when writing code for more than
76 one CBM platform, since it includes <tt/c128.h/ and declares several functions
77 common to all CBM platforms.
78
79
80 <sect1>C128 specific functions<p>
81
82 The functions listed below are special for the C128. See the <htmlurl
83 url="funcref.html" name="function reference"> for declaration and usage.
84
85 <itemize>
86 <item>toggle_videomode
87 <item>c64mode
88 <item>fast
89 <item>slow
90 </itemize>
91
92
93 <sect1>CBM specific functions<p>
94
95 Some functions are available for all (or at least most) of the Commodore
96 machines. See the <htmlurl url="funcref.html" name="function reference"> for
97 declaration and usage.
98
99 <itemize>
100 <item>cbm_close
101 <item>cbm_closedir
102 <item>cbm_k_setlfs
103 <item>cbm_k_setnam
104 <item>cbm_k_load
105 <item>cbm_k_save
106 <item>cbm_k_open
107 <item>cbm_k_close
108 <item>cbm_k_readst
109 <item>cbm_k_chkin
110 <item>cbm_k_ckout
111 <item>cbm_k_basin
112 <item>cbm_k_bsout
113 <item>cbm_k_clrch
114 <item>cbm_load
115 <item>cbm_open
116 <item>cbm_opendir
117 <item>cbm_read
118 <item>cbm_readdir
119 <item>cbm_save
120 <item>cbm_write
121 <item>get_tv
122 </itemize>
123
124
125 <sect1>Hardware access<p>
126
127 The following pseudo variables declared in the <tt/c128.h/ header file do
128 allow access to hardware located in the address space. Some variables are
129 structures, accessing the struct fields will access the chip registers.
130
131 <descrip>
132
133   <tag><tt/VIC/</tag>
134   The <tt/VIC/ structure allows access to the VIC II (the graphics
135   controller). See the <tt/_vic2.h/ header file located in the include
136   directory for the declaration of the structure.
137
138   <tag><tt/SID/</tag>
139   The <tt/SID/ structure allows access to the SID (the sound interface
140   device). See the <tt/_sid.h/ header file located in the include directory
141   for the declaration of the structure.
142
143   <tag><tt/VDC/</tag>
144   The <tt/VDC/ structure allows access to the VDC (the video display
145   controller). See the <tt/_vdc.h/ header file located in the include
146   directory for the declaration of the structure.
147
148   <tag><tt/CIA1, CIA2/</tag>
149   Access to the two CIA (complex interface adapater) chips is available via
150   the <tt/CIA1/ and <tt/CIA2/ variables. The structure behind these variables
151   is explained in <tt/_cia.h/.
152
153   <tag><tt/COLOR_RAM/</tag>
154   A character array that mirrors the color RAM of the C64 at &dollar;D800.
155
156 </descrip><p>
157
158
159
160 <sect>Loadable drivers<p>
161
162 <sect1>Graphics drivers<p>
163
164 Note: The graphics drivers for the VDC are incompatible with the extended
165 memory drivers using the VDC memory!
166
167 <descrip>
168   <tag><tt/c128-vdc.tgi/</tag>
169   This driver uses the 80 column display and features a resolution of 640*200
170   with two colors and an adjustable palette (that means that the two colors
171   can be choosen out of the 16 VDC colors).
172
173   <tag><tt/c128-vdc2.tgi/</tag>
174   This driver uses the 80 column display and features a resolution of 640*480
175   with two colors and an adjustable palette (that means that the two colors
176   can be choosen out of the 16 VDC colors).
177 </descrip><p>
178
179
180 <sect1>Extended memory drivers<p>
181
182 <descrip>
183
184   <tag><tt/c128-georam.emd/</tag>
185   A driver for the GeoRam cartridge. The driver will always assume 2048 pages
186   of 256 bytes each. There are no checks, so if your program knows better,
187   just go ahead.
188
189   <tag><tt/c128-ram.emd/</tag>
190   An extended memory driver for the RAM in page 1. The common memory area is
191   excluded, so this driver supports 251 pages of 256 bytes each.
192
193   <tag><tt/c128-ramcart.emd/</tag>
194   A driver for the RamCart 64/128. Will test the hardware for the available
195   RAM.
196
197   <tag><tt/c128-reu.emd/</tag>
198   A driver for the CBM REUs. The driver will determine from the connected REU
199   if it supports 128KB of RAM or more. In the latter case, 256KB are assumed,
200   but since there are no range checks, the application can use more memory if
201   it has better knowledge about the hardware than the driver.
202
203   <tag><tt/c128-vdc.emd/</tag>
204   A driver for the VDC memory of the C128. Autodetects the amount of memory
205   available (16 or 64K) and offers 64 or 256 pages of 256 bytes each. Note:
206   This driver is incompatible with any of the graphics drivers using the VDC!
207
208 </descrip><p>
209
210
211 <sect1>Joystick drivers<p>
212
213 <descrip>
214
215   <tag><tt/c128-ptvjoy.joy/</tag>
216   Driver for the Protovision 4-player adapter. See
217   <htmlurl url="http://www.protovision-online.de/hardw/hardwstart.htm"
218   name="http://www.protovision-online.de/hardw/hardwstart.htm"> for prices
219   and building instructions. Up to four joysticks are supported.
220
221   <tag><tt/c128-stdjoy.joy/</tag>
222   Supports up to two joysticks connected to the standard joysticks port of
223   the C128.
224
225 </descrip><p>
226
227
228
229 <sect1>Mouse drivers<p>
230
231 Currently no drivers available (in fact, the API for loadable mouse drivers
232 does not exist).
233
234
235 <sect1>RS232 device drivers<p>
236
237 <descrip>
238
239   <tag><tt/c128-swlink.ser/</tag>
240   Driver for the SwiftLink cartridge. Supports up to 38400 baud, hardware flow
241   control (RTS/CTS) and interrupt driven receives. Note that because of the
242   peculiarities of the 6551 chip together with the use of the NMI, transmits
243   are not interrupt driven, and the transceiver blocks if the receiver asserts
244   flow control because of a full buffer.
245
246   The driver uses the RS232 variables and buffers of the kernal (buffers at
247   &dollar;C00 and &dollar;D00).
248
249 </descrip><p>
250
251
252
253 <sect>Other hints<p>
254
255 <sect1>Passing arguments to the program<p>
256
257 Command line argument passing is currently not supported for the C128.
258
259
260 <sect1>Interrupts<p>
261
262 The runtime for the C128 uses routines marked as <tt/.CONDES/ type 2 for
263 interrupt handlers. Such routines must be written as simple machine language
264 subroutines and will be called automatically by the interrupt handler code
265 when they are linked into a program. See the discussion of the <tt/.CONDES/
266 feature in the <htmlurl url="ca65.html" name="assembler manual">.
267
268
269
270 <sect>Bugs/Feedback<p>
271
272 If you have problems using the library, if you find any bugs, or if you're
273 doing something interesting with it, I would be glad to hear from you. Feel
274 free to contact me by email (<htmlurl url="mailto:uz@cc65.org"
275 name="uz@cc65.org">).
276
277
278
279 <sect>License<p>
280
281 This software is provided 'as-is', without any expressed or implied
282 warranty.  In no event will the authors be held liable for any damages
283 arising from the use of this software.
284
285 Permission is granted to anyone to use this software for any purpose,
286 including commercial applications, and to alter it and redistribute it
287 freely, subject to the following restrictions:
288
289 <enum>
290 <item>  The origin of this software must not be misrepresented; you must not
291         claim that you wrote the original software. If you use this software
292         in a product, an acknowledgment in the product documentation would be
293         appreciated but is not required.
294 <item>  Altered source versions must be plainly marked as such, and must not
295         be misrepresented as being the original software.
296 <item>  This notice may not be removed or altered from any source
297         distribution.
298 </enum>
299
300 </article>
301
302
303
304