]> git.sur5r.net Git - cc65/blob - doc/atmos.sgml
remote TABs in doc/ and test/
[cc65] / doc / atmos.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4 <title>Oric Atmos-specific information for cc65
5 <author>
6 <url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">,<newline>
7 <url url="mailto:polluks@sdf.lonestar.org" name="Stefan A. Haubenthal">,<newline>
8 <url url="mailto:greg.king5@verizon.net" name="Greg King">
9
10 <abstract>
11 An overview over the Atmos runtime system as it is implemented for the cc65 C
12 compiler.
13 </abstract>
14
15 <!-- Table of contents -->
16 <toc>
17
18 <!-- Begin the document -->
19
20 <sect>Overview<p>
21
22 This file contains an overview of the Atmos runtime system as it comes with the
23 cc65 C compiler. It describes the memory layout, Atmos-specific header files,
24 available drivers, and any pitfalls specific to that platform.
25
26 Please note that Atmos-specific functions are just mentioned here, they are
27 described in detail in the separate <url url="funcref.html" name="function
28 reference">. Even functions marked as "platform dependent" may be available on
29 more than one platform. Please see the function reference for more
30 information.
31
32
33
34 <sect>Binary format<p>
35
36 The standard binary output format generated by the linker for the Atmos target
37 is a machine language program with a one-line BASIC stub that jumps to the
38 machine-language part through <tt/CALL/.  It has one sacrificial byte attached
39 to the end (a bug in the Oric ROM means that BASIC can put a variable on top
40 of the last byte that was loaded).  It has a 24-byte tape header.  A file can
41 be CLOADed as a BASIC program, and started by typing <tt/RUN/.  The standard
42 load address is &dollar;501.
43
44
45
46 <sect>Memory layout<p>
47
48 In the standard setup, cc65-generated programs use the memory from
49 &dollar;0501 to &dollar;9800; so, nearly 37K of memory (including the stack) is
50 available. ROM calls are possible without further precautions.
51
52 If your program needs more memory, and it won't use TGI graphics, then you can
53 use the ld65 command-line option, <tt/-D __GRAB__=1/, when building the
54 program, to include the graphics screen RAM.  Then, nearly 44K of memory
55 (&dollar;0501 to &dollar;B400) is available.
56
57 Special locations:
58
59 <descrip>
60   <tag/Stack/
61   The C runtime stack is located at &dollar;97FF (or &dollar;B3FF), and grows
62   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 Atmos-specific code may use the <tt/atmos.h/ header file.
75
76
77 <sect1>Atmos-specific functions<p>
78
79 The functions listed below are special for the Atmos. See the <url
80 url="funcref.html" name="function reference"> for declaration and usage.
81
82 <itemize>
83 <item>atmos_load
84 <item>atmos_save
85 <item>atmos_explode
86 <item>atmos_ping
87 <item>atmos_shoot
88 <item>atmos_tick
89 <item>atmos_tock
90 <item>atmos_zap
91 </itemize>
92
93
94 <sect1>Hardware access<p>
95
96 The following pseudo variables declared in the <tt/atmos.h/ header file do allow
97 access to hardware located in the address space. Some variables are
98 structures; accessing the struct fields will access the chip registers.
99
100 <descrip>
101
102   <tag><tt/VIA/</tag>
103   Access to the VIA (Versatile Interface Adapter) chip is available via the
104   <tt/VIA/ variable. The structure behind this variable is explained in <tt/_6522.h/.
105
106 </descrip><p>
107
108
109
110 <sect>Loadable drivers<p>
111
112 <em>Note:</em> Since the Atmos doesn't have working disk I/O
113 (see <ref id="limitations" name="section &quot;Limitations&quot;">), the
114 available drivers cannot be loaded at runtime (so the term "loadable drivers"
115 is somewhat misleading). Instead, the drivers have to be statically linked. While
116 this may seem overhead, it has two advantages:
117
118 <enum>
119 <item>The interface is identical to the one used for other platforms
120       and to the one for the Atmos once it has disk I/O.
121 <item>Once disk I/O is available, existing code can be changed to load drivers
122       at runtime with almost no effort.
123 </enum>
124
125 The names in the parentheses denote the symbols to be used for static linking of the drivers.
126
127
128 <sect1>Graphics drivers<p>
129
130 The default drivers, <tt/tgi_stddrv (tgi_static_stddrv)/,
131 point to <tt/atmos-240-200-2.tgi (atmos_240_200_2_tgi)/.
132
133 <descrip>
134
135   <tag><tt/atmos-228-200-3.tgi (atmos_228_200_3_tgi)/</tag>
136   This driver was written by Greg King and Stefan Haubenthal.
137   It features a resolution of 228&times;200 with a palette of two colors that
138   can be chosen from the Atmos's eight colors.  The driver supports a third
139   palette-"color" that actually "flips" the pixel (it becomes the other color)
140   that is on the screen under the graphics cursor.
141
142   <tag><tt/atmos-240-200-2.tgi (atmos_240_200_2_tgi)/</tag>
143   This driver was written by Stefan Haubenthal and Greg King.
144   It features a resolution of 240&times;200 with black and white colors.
145   It is the default graphics driver for the Atmos.
146
147 </descrip><p>
148
149
150 <sect1>Extended memory drivers<p>
151
152 No extended memory drivers are currently available for the Atmos.
153
154
155 <sect1>Joystick drivers<p>
156
157 <descrip>
158
159   <tag><tt/atmos-pase.joy (atmos_pase_joy)/</tag>
160   Supports two standard joysticks connected to a P.A.S.E. / Altai interface of the Atmos.
161
162   <tag><tt/atmos-ijk.joy (atmos_ijk_joy)/</tag>
163   Supports two standard joysticks connected to an IJK interface of the Atmos.
164
165 </descrip><p>
166
167
168 <sect1>Mouse drivers<p>
169
170 No mouse drivers are currently available for the Atmos.
171
172
173 <sect1>RS232 device drivers<p>
174
175 <descrip>
176
177   <tag><tt/atmos-acia.ser (atmos_acia_ser)/</tag>
178   Driver for the Telestrat integrated serial controller and the Atmos with a
179   serial add-on.
180   Note that, because of the peculiarities of the 6551 chip, together with the
181   use of the NMI, transmits are not interrupt driven; and, the transceiver
182   blocks if the receiver asserts flow control because of a full buffer.
183
184 </descrip><p>
185
186
187
188 <sect>Limitations<label id="limitations"><p>
189
190 <sect1>Disk I/O<p>
191
192 The existing library for the Atmos doesn't implement C file I/O. There are
193 hacks for the <tt/read()/ and <tt/write()/ routines in place, which will make
194 functions work that read from <tt/stdin/ and write to <tt/stdout/ and
195 <tt/stderr/ (such as <tt/printf()/). However, those functions have some
196 shortcomings which won't be fixed, because they're going to be replaced
197 anyway.
198
199 To be more concrete, that limitation means that you cannot use any of the
200 following functions (and a few others):
201
202 <itemize>
203 <item>fclose
204 <item>fopen
205 <item>fread
206 <item>fprintf
207 <item>fputc
208 <item>fscanf
209 <item>fwrite
210 <item>...
211 </itemize>
212
213
214
215 <sect>Other hints<p>
216
217
218 <sect1>Function keys<p>
219
220 They are defined to be FUNCT + a number key.
221
222
223 <sect1>Capitals lock<p>
224
225 The keyboard's "CAPS Lock" mode is turned off while the program is running.
226 The previous mode (usually, CAPS Lock turned on [because Oric BASIC keywords
227 must be UPPER-case]) is restored when the program stops.
228
229
230 <sect1>Passing arguments to the program<p>
231
232 Command-line arguments can be passed to <tt/main()/. Since that is not
233 supported directly by BASIC, the following syntax was chosen:
234
235 <tscreen><verb>
236     RUN:REM arg1 " ARG2 IS QUOTED" ARG3 "" ARG5
237 </verb></tscreen>
238
239 <enum>
240 <item>You must turn <tt/CAPS/ lock off (tap CTRL-T) when you want to type
241       lower-case arguments (but, <tt/RUN/ and <tt/REM/ must be UPPER-case).
242 <item>Arguments are separated by spaces.
243 <item>Arguments may be quoted.
244 <item>Leading and trailing spaces around an argument are ignored. Spaces within
245       a quoted argument are allowed.
246 <item>The first argument passed to <tt/main()/ is the program name.
247 <item>A maximum number of 10 arguments (including the program name) are
248       supported.
249 </enum>
250
251
252 <sect1>Automatic starting<p>
253
254 Usually, a cc65-built program just will sit quietly in memory, after it is
255 CLOADed.  It waits for you to start it (by typing BASIC's <tt/RUN/ command).
256 But, if you want to create a program that will start running immediately after
257 it is loaded, then you can use the linker command-line option
258 <tt/-D __AUTORUN__=$C7/.
259
260
261 <sect1>Interrupts<p>
262
263 The runtime for the Atmos uses routines marked as <tt/.INTERRUPTOR/ for
264 interrupt handlers. Such routines must be written as simple machine language
265 subroutines and will be called automatically by the interrupt handler code
266 when they are linked into a program. See the discussion of the <tt/.CONDES/
267 feature in the <url url="ca65.html" name="assembler manual">.
268
269
270
271 <sect>License<p>
272
273 This software is provided 'as-is', without any expressed or implied
274 warranty.  In no event will the authors be held liable for any damages
275 arising from the use of this software.
276
277 Permission is granted to anyone to use this software for any purpose,
278 including commercial applications, and to alter it and redistribute it
279 freely, subject to the following restrictions:
280
281 <enum>
282 <item>  The origin of this software must not be misrepresented; you must not
283         claim that you wrote the original software. If you use this software
284         in a product, an acknowledgment in the product documentation would be
285         appreciated but is not required.
286 <item>  Altered source versions must be plainly marked as such, and must not
287         be misrepresented as being the original software.
288 <item>  This notice may not be removed or altered from any source
289         distribution.
290 </enum>
291
292 </article>