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