]> git.sur5r.net Git - cc65/blob - doc/atari.sgml
44bf65671da3797f121e507e7cb7002b887361c3
[cc65] / doc / atari.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4
5 <title>Atari specific information for cc65
6 <author>Shawn Jefferson, <htmlurl
7 url="mailto:shawnjefferson@24fightingchickens.com"
8 name="shawnjefferson@24fightingchickens.com"> and
9 Christian Groessler, <htmlurl url="mailto:chris@groessler.org" name="chris@groessler.org">
10 <date>03-Jan-2006
11
12 <abstract>
13 An overview over the Atari runtime system as it is implemented for the cc65 C
14 compiler.
15 </abstract>
16
17 <!-- Table of contents -->
18 <toc>
19
20 <!-- Begin the document -->
21
22 <sect>Overview<p>
23
24 This file contains an overview of the Atari runtime system as it comes
25 with the cc65 C compiler. It describes the memory layout, Atari specific
26 header files, available drivers, and any pitfalls specific to that
27 platform.
28
29 Please note that Atari specific functions are just mentioned here, they are
30 described in detail in the separate <htmlurl url="funcref.html" name="function
31 reference">. Even functions marked as "platform dependent" may be available on
32 more than one platform. Please see the function reference for more
33 information.
34
35
36 <sect>Binary format<p>
37
38 The standard binary output format generated by the linker for the
39 Atari target is a machine language program with a standard executable
40 header (FF FF &lt;2 byte start address&gt; &lt;2 bytes end address&gt;
41 &lsqb;program bytes&rsqb;). These values are calculated in the crt0.s
42 file from the __STARTUP_LOAD__ and __ZPSAVE_LOAD__ values, so keep
43 this in mind if you create a custom linker config file and start
44 moving segments around (see section
45 <ref name="Reserving a memory area inside the program" id="memhole">).
46 You can override this behaviour by creating your own crt0.s file and
47 linking it into your program.  A run vector is added to the end of the
48 file (&dollar;02E0 &lt;run vector&gt;) and is calculated using
49 __STARTUP_LOAD__ in crt0.s.
50
51
52 <sect>Memory layout<p>
53
54 The default linker script assumes that the BASIC ROM is disabled (or
55 the BASIC cartridge unplugged). This gives a usable memory range from
56 &dollar;2E00 - &dollar;BC1F. The library startup code examines the
57 current memory configuration, which depends on the size of the
58 installed memory and cartridges present, by inspecting the value in
59 the MEMTOP (&dollar;2E5) variable. Then the initial stack pointer,
60 which indicates the upper bound of memory used, is adjusted. The
61 default load address of &dollar;2E00 was chosen to accommodate having
62 a DOS loaded and a driver that resides in low memory such as the 850
63 R: handler. You can override this behaviour by creating a custom
64 linker config file or by using the "--start-addr" cl65 command line
65 argument or the "--start-addr" or "-S" ld65 command line arguments.
66
67 Special locations:
68
69 <descrip>
70   <tag/Text screen/
71   The text screen depends on the installed memory size and cartridges
72   and can be obtained from the SAVMSC variable (&dollar;58).
73
74   <tag/Stack/
75   The C runtime stack is located at MEMTOP and grows downwards,
76   regardless of how your linker config file is setup.  This
77   accommodates the different memory configurations of the Atari
78   machines, as well as having a cartridge installed.  You can override
79   this behaviour by writing your own crt0.s file and linking it to
80   your program (see also <ref name="Final note"
81   id="memhole_final_note">).
82
83   <tag/Heap/
84   The C heap is located at the end of the program and grows towards the C
85   runtime stack.
86
87 </descrip><p>
88
89
90
91 <sect>Platform specific header files<p>
92
93 Programs containing Atari specific code may use the <tt/atari.h/
94 header file.
95
96
97 <sect1>Atari specific functions<p>
98
99 The functions and global variable listed below are special for the Atari.
100 See the <htmlurl url="funcref.html" name="function reference"> for declaration and usage.
101
102 <itemize>
103 <item>get_ostype
104 <item>get_tv
105 <item>_dos_type
106 <item>_gtia_mkcolor
107 <item>_getcolor
108 <item>_getdefdev
109 <item>_graphics
110 <item>_rest_vecs
111 <item>_save_vecs
112 <item>_scroll
113 <item>_setcolor
114 <item>_setcolor_low
115 </itemize>
116
117
118 <sect1>Hardware access<p>
119
120 The following pseudo variables declared in the <tt/atari.h/ header
121 file do allow access to hardware located in the address space. Some
122 variables are structures, accessing the struct fields will access the
123 chip registers.
124
125 <descrip>
126
127   <tag><tt/GTIA_READ/ and <tt/GTIA_WRITE/</tag>
128   The <tt/GTIA_READ/ structure allows read access to the GTIA. The
129   <tt/GTIA_WRITE/ structure allows write access to the GTIA.
130   See the <tt/_gtia.h/ header file located in the include directory
131   for the declaration of the structure.
132
133   <tag><tt/POKEY_READ/ and <tt/POKEY_WRITE/</tag>
134   The <tt/POKEY_READ/ structure allows read access to the POKEY. The
135   <tt/POKEY_WRITE/ structure allows write access to the POKEY.
136   See the <tt/_pokey.h/ header file located in the include directory
137   for the declaration of the structure.
138
139   <tag><tt/ANTIC/</tag>
140   The <tt/ANTIC/ structure allows read access to the ANTIC.
141   See the <tt/_antic.h/ header file located in the include directory
142   for the declaration of the structure.
143
144   <tag><tt/PIA/</tag>
145   The <tt/PIA/ structure allows read access to the PIA 6520.
146   See the <tt/_pia.h/ header file located in the include directory
147   for the declaration of the structure.
148
149 </descrip><p>
150
151
152
153 <sect>Loadable drivers<p>
154
155 <sect1>Graphics drivers<p>
156
157 Currently there are no graphics drivers available for the Atari platform.
158 However, the runtime library provides a function named _graphics, with
159 a mode parameter just like the BASIC GRAPHICS command. This function will
160 switch to the requested graphics mode.
161 There are currently no functions available to access the graphics
162 memory. The access must be implemented manually.
163
164 Many graphics modes require more memory than the text screen which is
165 in effect when the program starts up. Therefore the programmer has to
166 tell the program beforehand the memory requirements of the graphics
167 modes the program intends to use.
168 This can be done by using the __RESERVED_MEMORY__ linker config
169 variable. The number specified there describes the number of bytes to
170 subtract from the top of available memory as seen from the runtime
171 library. This memory is then used by the screen buffer.
172
173 The numbers for the different graphics modes presented below should
174 only be seen as a rule of thumb. Since the screen buffer memory needs
175 to start at specific boundaries, the numbers depend on the current top
176 of available memory.
177 The following numbers were determined by a BASIC program.
178
179 <table>
180 <tabular ca="rr">
181 graphics mode|reserved memory@<hline>
182 0|1@
183 1|1@
184 2|1@
185 3|1@
186 4|1@
187 5|182@
188 6|1182@
189 7|3198@
190 8|7120@
191 9|7146@
192 10|7146@
193 11|7146@
194 12|162@
195 13|1@
196 14|3278@
197 15|7120@
198 16|1@
199 17|1@
200 18|1@
201 19|1@
202 20|1@
203 21|184@
204 22|1192@
205 23|3208@
206 24|7146@
207 25|7146@
208 26|7146@
209 27|7146@
210 28|162@
211 29|1@
212 30|3304@
213 31|7146
214 </tabular>
215 <caption>reserved memory required for different graphics modes
216 </table>
217
218 The values of "1" are needed because the graphics command crashes if
219 it doesn't have at least one byte available. This seems to be a bug of
220 the Atari ROM code.
221
222 <sect1>Extended memory drivers<p>
223
224 Currently there are no extended memory drivers available for the Atari
225 platform.
226
227 <sect1>Joystick drivers<p>
228
229 <descrip>
230
231   <tag><tt/ataristd.joy/</tag>
232   Supports up to four standard joysticks connected to the joystick ports of
233   the Atari.
234
235   <tag><tt/atarim8.joy/</tag>
236   Supports up to eight standard joysticks connected to a MultiJoy adapter.
237
238 </descrip><p>
239
240
241
242 <sect1>Mouse drivers<p>
243
244 Currently no drivers available (in fact, the API for loadable mouse drivers
245 does not exist). There is a static driver you can use.
246
247
248 <sect1>RS232 device drivers<p>
249
250 Currently there are no RS232 loadable drivers available for the Atari
251 platform. There is a static driver you can use.
252
253
254 <sect>Limitations<p>
255
256
257 <sect>DIO implementation<label id="dio"><p>
258
259 The Atari supports disk drives with either 128 or 256 byte sectors.
260 The first three sectors of any disk are always 128 bytes long though. This is
261 because the system can only boot from 128 bytes sectors.
262
263 Therefore the DIO read and write functions transfer only 128 bytes
264 for sectors 1 to 3, regardless of the type of diskette.
265
266
267 <sect>CONIO implementation<label id="conio"><p>
268
269 The console I/O is speed optimized therefore support for XEP80 hardware
270 or f80.com software is missing. Of course you may use stdio.h functions.
271
272
273 <sect>Other hints<p>
274
275
276 <sect1>Function keys<p>
277
278 Function keys are mapped to Atari + number key.
279
280
281 <sect1>Passing arguments to the program<p>
282
283 Command line arguments can be passed to <tt/main()/ when DOS supports it.
284
285 <enum>
286 <item>Arguments are separated by spaces.
287 <item>Leading and trailing spaces around an argument are ignored.
288 <item>The first argument passed to <tt/main/ is the program name.
289 <item>A maximum number of 16 arguments (including the program name) are
290       supported.                                                       
291 </enum>
292
293
294 <sect1>Interrupts<p>
295
296 The runtime for the Atari uses routines marked as <tt/.INTERRUPTOR/ for
297 interrupt handlers. Such routines must be written as simple machine language
298 subroutines and will be called automatically by the VBI handler code
299 when they are linked into a program. See the discussion of the <tt/.CONDES/
300 feature in the <htmlurl url="ca65.html" name="assembler manual">.
301
302
303 <sect1>Reserving a memory area inside a program<label id="memhole"><p>
304
305 The Atari 130XE maps its additional memory into CPU memory in 16K
306 chunks at address &dollar;4000 to &dollar;7FFF. One might want to
307 prevent this memory area from being used by cc65. Other reasons to
308 prevent the use of some memory area could be to reserve space for the
309 buffers for display lists and screen memory.
310 <p>
311 The Atari executable format allows holes inside a program, e.g. one
312 part loads into &dollar;2E00 to &dollar;3FFF, going below the reserved
313 memory area (assuming a reserved area from &dollar;4000 to
314 &dollar;7FFF), and another part loads into &dollar;8000 to
315 &dollar;BC1F.
316 <p>
317 Each load chunk of the executable starts with a 4 byte header which
318 defines its load address and size. In the following linker scripts
319 these headers are named HEADER and SECHDR (for the MEMORY layout), and
320 accordingly NEXEHDR and CHKHDR (for the SEGMENTS layout).
321 <p>
322 <sect2>Low code and high data example<p>
323 Goal: Create an executable with 2 load chunks which doesn't use the
324 memory area from &dollar;4000 to &dollar;7FFF. The CODE segment of
325 the program should go below &dollar;4000 and the DATA and RODATA
326 segments should go above &dollar;7FFF.
327 <p>
328 The main problem is that the EXE header generated by the cc65 runtime
329 lib is wrong. It defines a single load chunk with the sizes/addresses
330 of the STARTUP, LOWCODE, INIT, CODE, RODATA, and DATA segments (the whole user
331 program).
332 <p>
333 The contents of the EXE header come from the EXEHDR segment, which is
334 defined in crt0.s. This cannot be changed without modifying and
335 recompiling the cc65 atari runtime lib. Therefore the original EXE
336 header must be discarded. It will be replaced by a user created
337 one. The discarding is done by assigning the EXEHDR segment to the
338 BANK memory area. The BANK memory area is discarded in the new linker
339 script (written to file "").
340 <p>
341 The user needs to create a customized linker config file which adds
342 new memory areas and segments to hold the new EXE header and the
343 header data for the second load chunk. Also an assembly source file
344 needs to be created which defines the contents of the new EXE header
345 and the second load chunk header.
346 <p>
347 <p>
348 This is an example of a modified cc65 Atari linker configuration file
349 (split.cfg):
350 <tscreen><verb>
351 SYMBOLS {
352     __STACKSIZE__ = $800;                               # 2K stack
353     __RESERVED_MEMORY__: value = $0000, weak = yes;
354 }
355 FEATURES {
356     STARTADDRESS: default = $2E00;
357 }
358 MEMORY {
359     ZP: start = $82, size = $7E, type = rw, define = yes;
360
361     HEADER: start = $0000, size = $6, file = %O;        # first load chunk
362     RAMLO: start = %S, size = $4000 - %S, file = %O;
363
364     BANK: start = $4000, size = $4000, file = "";
365
366     SECHDR: start = $0000, size = $4, file = %O;        # second load chunk
367     RAM: start = $8000, size = $3C20, file = %O;        # $3C20: matches upper bound $BC1F
368 }
369 SEGMENTS {
370     EXEHDR: load = BANK, type = ro;
371
372     NEXEHDR: load = HEADER, type = ro;                  # first load chunk
373     STARTUP: load = RAMLO, type = ro, define = yes;
374     LOWCODE: load = RAMLO, type = ro, define = yes, optional = yes;
375     INIT: load = RAMLO, type = ro, optional = yes;
376     CODE: load = RAMLO, type = ro, define = yes;
377
378     CHKHDR: load = SECHDR, type = ro;                   # second load chunk
379     RODATA: load = RAM, type = ro, define = yes;
380     DATA: load = RAM, type = rw, define = yes;
381     BSS: load = RAM, type = bss, define = yes;
382     ZPSAVE: load = RAM, type = bss, define = yes;
383
384     ZEROPAGE: load = ZP, type = zp;
385     AUTOSTRT: load = RAM, type = ro;                    # defines program entry point
386 }
387 FEATURES {
388     CONDES: segment = RODATA,
389             type = constructor,
390             label = __CONSTRUCTOR_TABLE__,
391             count = __CONSTRUCTOR_COUNT__;
392     CONDES: segment = RODATA,
393             type = destructor,
394             label = __DESTRUCTOR_TABLE__,
395             count = __DESTRUCTOR_COUNT__;
396 }
397 </verb></tscreen>
398 <p>
399
400 A new memory area BANK was added which describes the reserved area.
401 It gets loaded with the contents of the old EXEHDR segment. But the
402 memory area isn't written to the output file. This way the contents of
403 the EXEHDR segment get discarded.
404 <p>
405 The newly added NEXEHDR segment defines the correct EXE header. It
406 puts the STARTUP, LOWCODE, INIT, and CODE segments, which are the
407 segments containing only code, into load chunk #1 (RAMLO memory area).
408 <p>
409 The header for the second load chunk comes from the new CHKHDR
410 segment. It puts the RODATA, DATA, BSS, and ZPSAVE segments into load
411 chunk #2 (RAM memory area).
412 <p>
413 <p>
414 The contents of the new NEXEHDR and CHKHDR segments come from this
415 file (split.s):
416 <tscreen><verb>
417         .import __CODE_LOAD__, __BSS_LOAD__, __CODE_SIZE__
418         .import __DATA_LOAD__, __RODATA_LOAD__, __STARTUP_LOAD__
419
420         .segment "NEXEHDR"
421         .word    $FFFF
422         .word    __STARTUP_LOAD__
423         .word    __CODE_LOAD__ + __CODE_SIZE__ - 1
424
425         .segment "CHKHDR"
426         .word    __RODATA_LOAD__
427         .word    __BSS_LOAD__ - 1
428 </verb></tscreen>
429 <p>
430 Compile with
431 <tscreen><verb>
432 cl65 -t atari -C split.cfg -o prog.com prog.c split.s
433 </verb></tscreen>
434
435 <sect2>Low data and high code example<p>
436
437
438 Goal: Put RODATA and DATA into low memory and STARTUP, LOWCODE, INIT,
439 CODE, BSS, ZPSAVE into high memory (split2.cfg):
440
441 <tscreen><verb>
442 SYMBOLS {
443     __STACKSIZE__ = $800;       # 2K stack
444     __RESERVED_MEMORY__: value = $0000, weak = yes;
445 }
446 FEATURES {
447     STARTADDRESS: default = $2E00;
448 }
449 MEMORY {
450     ZP: start = $82, size = $7E, type = rw, define = yes;
451
452     HEADER: start = $0000, size = $6, file = %O;        # first load chunk
453     RAMLO: start = %S, size = $4000 - %S, file = %O;
454
455     BANK: start = $4000, size = $4000, file = "";
456
457     SECHDR: start = $0000, size = $4, file = %O;        # second load chunk
458     RAM: start = $8000, size = $3C20, file = %O;        # $3C20: matches upper bound $BC1F
459 }
460 SEGMENTS {
461     EXEHDR: load = BANK, type = ro;                     # discarded old EXE header
462
463     NEXEHDR: load = HEADER, type = ro;                  # first load chunk
464     RODATA: load = RAMLO, type = ro, define = yes;
465     DATA: load = RAMLO, type = rw, define = yes;
466
467     CHKHDR: load = SECHDR, type = ro;                   # second load chunk
468     STARTUP: load = RAM, type = ro, define = yes;
469     INIT: load = RAM, type = ro, optional = yes;
470     CODE: load = RAM, type = ro, define = yes;
471     ZPSAVE: load = RAM, type = bss, define = yes;
472     BSS: load = RAM, type = bss, define = yes;
473
474     ZEROPAGE: load = ZP, type = zp;
475     AUTOSTRT: load = RAM, type = ro;                    # defines program entry point
476 }
477 FEATURES {
478     CONDES: segment = RODATA,
479             type = constructor,
480             label = __CONSTRUCTOR_TABLE__,
481             count = __CONSTRUCTOR_COUNT__;
482     CONDES: segment = RODATA,
483             type = destructor,
484             label = __DESTRUCTOR_TABLE__,
485             count = __DESTRUCTOR_COUNT__;
486 }
487 </verb></tscreen>
488
489 New contents for NEXEHDR and CHKHDR are needed (split2.s):
490 <tscreen><verb>
491         .import __STARTUP_LOAD__, __ZPSAVE_LOAD__, __DATA_SIZE__
492         .import __DATA_LOAD__, __RODATA_LOAD__
493
494         .segment "NEXEHDR"
495         .word    $FFFF
496         .word    __RODATA_LOAD__
497         .word    __DATA_LOAD__ + __DATA_SIZE__ - 1
498
499         .segment "CHKHDR"
500         .word    __STARTUP_LOAD__
501         .word    __ZPSAVE_LOAD__ - 1
502 </verb></tscreen>
503
504 Compile with
505 <tscreen><verb>
506 cl65 -t atari -C split2.cfg -o prog.com prog.c split2.s
507 </verb></tscreen>
508
509 <sect2>Final note<label id="memhole_final_note"><p>
510
511 There are two other memory areas which don't appear directly in the
512 linker script. They are the stack and the heap.
513
514 The cc65 runtime lib places the stack location at the end of available
515 memory. This is dynamically set from the MEMTOP system variable at
516 startup. The heap is located in the area between the end of the BSS
517 segment and the top of the stack as defined by __STACKSIZE__.
518
519 If BSS and/or the stack shouldn't stay at the end of the program,
520 some parts of the cc65 runtime lib need to be replaced/modified.
521
522 common/_heap.s defines the location of the heap and atari/crt0.s
523 defines the location of the stack by initializing sp.
524
525
526 <sect>Bugs/Feedback<p>
527
528 If you have problems using the library, if you find any bugs, or if you're
529 doing something interesting with it, I would be glad to hear from you. Feel
530 free to contact me by email (<htmlurl url="mailto:uz@cc65.org"
531 name="uz@cc65.org"> or <htmlurl url="mailto:chris@groessler.org"
532 name="chris@groessler.org"> ).
533
534
535
536 <sect>License<p>
537
538 This software is provided 'as-is', without any expressed or implied
539 warranty.  In no event will the authors be held liable for any damages
540 arising from the use of this software.
541
542 Permission is granted to anyone to use this software for any purpose,
543 including commercial applications, and to alter it and redistribute it
544 freely, subject to the following restrictions:
545
546 <enum>
547 <item>  The origin of this software must not be misrepresented; you must not
548         claim that you wrote the original software. If you use this software
549         in a product, an acknowledgment in the product documentation would be
550         appreciated but is not required.
551 <item>  Altered source versions must be plainly marked as such, and must not
552         be misrepresented as being the original software.
553 <item>  This notice may not be removed or altered from any source
554         distribution.
555 </enum>
556
557 </article>