]> git.sur5r.net Git - cc65/blobdiff - doc/cbm610.sgml
remote TABs in doc/ and test/
[cc65] / doc / cbm610.sgml
index 5acb38a1a3c42cd9d128a2add7ec1ab6d2da8441..37a445dd1c7f18a896020bd3d9f878193a034016 100644 (file)
@@ -1,10 +1,10 @@
 <!doctype linuxdoc system>
 
 <article>
-
-<title>Commodore 610 specific information for cc65
-<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
-<date>2003-12-16
+<title>Commodore 610-specific information for cc65
+<author>
+<url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">,<newline>
+<url url="mailto:greg.king5@verizon.net" name="Greg King">
 
 <abstract>
 An overview over the Commodore 610 runtime system as it is implemented for the
@@ -19,11 +19,11 @@ cc65 C compiler.
 <sect>Overview<p>
 
 This file contains an overview of the CBM 610 runtime system as it comes with
-the cc65 C compiler. It describes the memory layout, CBM 610 specific header
+the cc65 C compiler. It describes the memory layout, CBM 610-specific header
 files, available drivers, and any pitfalls specific to that platform.
 
-Please note that CBM 610 specific functions are just mentioned here, they are
-described in detail in the separate <htmlurl url="funcref.html" name="function
+Please note that CBM 610-specific functions are just mentioned here, they are
+described in detail in the separate <url url="funcref.html" name="function
 reference">. Even functions marked as "platform dependent" may be available on
 more than one platform. Please see the function reference for more
 information.
@@ -31,21 +31,22 @@ information.
 In addition to the Commodore 610 (named B40 in the U.S.), several other
 machines are supported by this cc65 target, since they have identical
 hardware: The Commodore 620 and 630 (more memory, additional coprocessor
-card), and the Commodore 710, 720 and 730 (same hardware in another case with
-a builtin monitor).
+card), and the Commodore 710, 720, and 730 (same hardware in another case with
+a built-in monitor).
 
 
 
 <sect>Binary format<p>
 
 The standard binary output format generated by the linker for the Commodore
-610 target is a machine language program with a one line BASIC stub, which     
-transfers control to the machine language running in bank 1. This means that a
-program can be loaded as BASIC program and started with RUN. It is of course
-possible to change this behaviour by using a modified startup file and linker
+610 target is a machine language program with a one-line BASIC stub, which
+transfers control to the machine language running in bank 1. That means that a
+program can be loaded as a BASIC program, and started with RUN. It is, of course,
+possible to change that behaviour by using a modified startup file and linker
 config.
 
 
+
 <sect>Memory layout<p>
 
 cc65 generated programs for the Commodore 610 run in bank 1, the memory bank
@@ -57,8 +58,8 @@ The default memory configuration for the CBM 610 allocates all memory between
 &dollar;0002 and &dollar;FFF0 in bank 1 for the compiled program. Some space
 in low memory is lost, because a separate hardware stack is set up in page 1,
 and the kernal replacement functions need some more memory locations. A few
-more bytes are lost in high memory, because the runtime sets up a CBM
-compatible jump table at &dollar;FF81. The main startup code is located at
+more bytes are lost in high memory, because the runtime sets up a CBM-compatible
+jump table at &dollar;FF81. The main startup code is located at
 &dollar;0400, so about 63K of the complete bank are actually usable for
 applications.
 
@@ -66,25 +67,26 @@ Special locations:
 
 <descrip>
   <tag/Stack/
-  The C runtime stack is located at &dollar;FF81 and growing downwards.
+  The C runtime stack is located at &dollar;FF81, and grows downwards.
 
   <tag/Heap/
-  The C heap is located at the end of the program and grows towards the C
+  The C heap is located at the end of the program, and grows towards the C
   runtime stack.
 </descrip><p>
 
 
 
-<sect>Platform specific header files<p>
+<sect>Platform-specific header files<p>
 
-Programs containing CBM 610 specific code may use the <tt/cbm610.h/ or
+Programs containing CBM 610-specific code may use the <tt/cbm610.h/ or
 <tt/cbm.h/ header files. Using the later may be an option when writing code
-for more than one CBM platform, since it includes <tt/cbm610.h/ and declares
+for more than one CBM platform, since it includes <tt/cbm610.h/, and declares
 several functions common to all CBM platforms.
 
-<sect1>CBM 610 specific functions<p>
 
-The functions listed below are special for the CBM 610. See the <htmlurl
+<sect1>CBM 610-specific functions<p>
+
+The functions listed below are special for the CBM 610. See the <url
 url="funcref.html" name="function reference"> for declaration and usage.
 
 <itemize>
@@ -95,10 +97,10 @@ url="funcref.html" name="function reference"> for declaration and usage.
 </itemize>
 
 
-<sect1>CBM specific functions<p>
+<sect1>CBM-specific functions<p>
 
 Some functions are available for all (or at least most) of the Commodore
-machines. See the <htmlurl url="funcref.html" name="function reference"> for
+machines. See the <url url="funcref.html" name="function reference"> for
 declaration and usage.
 
 
@@ -117,6 +119,8 @@ declaration and usage.
 <item>cbm_k_basin
 <item>cbm_k_bsout
 <item>cbm_k_clrch
+<item>cbm_k_tksa
+<item>cbm_k_second
 <item>cbm_load
 <item>cbm_open
 <item>cbm_opendir
@@ -128,16 +132,15 @@ declaration and usage.
 </itemize>
 
 
-
 <sect1>Hardware access<p>
 
 The following pseudo variables declared in the <tt/cbm610.h/ header file do
 allow access to hardware located in the address space. Some variables are
-structures, accessing the struct fields will access the chip registers.
+structures; accessing the struct fields will access the chip registers.
 
-<bf>Note:</bf> All I/O chips are located in the system bank (bank 15) and can
+<em/Note:/ All I/O chips are located in the system bank (bank 15); and can
 therefore not be accessed like on other platforms. Please use one of the
-<tt/peekbsys/, <tt/peekwsys/, <tt/pokebsys/ and <tt/pokewsys/ functions to
+<tt/peekbsys/, <tt/peekwsys/, <tt/pokebsys/, and <tt/pokewsys/ functions to
 access the I/O chips. Direct reads and writes to the structures named below
 will <em>not</em> work!
 
@@ -163,7 +166,7 @@ will <em>not</em> work!
   declaration of the structure.
 
   <tag><tt/TPI1, TPI2/</tag>
-  The two 6525 triport chips may be accessed by using this variable. See the
+  The two 6525 triport chips may be accessed by using these variables. See the
   <tt/_6525.h/ header file located in the include directory for the
   declaration of the structure.
 
@@ -180,13 +183,13 @@ The names in the parentheses denote the symbols to be used for static linking of
 
 No graphics drivers are currently available for the Commodore 610 (and since
 the machine has no graphics capabilities, chances for a graphics driver aren't
-really good:-).
+really good :-).
 
 
 <sect1>Extended memory drivers<p>
 
 <descrip>
-  <tag><tt/cbm610-ram.emd (cbm610_ram)/</tag>
+  <tag><tt/cbm610-ram.emd (cbm610_ram_emd)/</tag>
   A driver for the RAM in bank 2. Supports up to 255 pages with 256 bytes
   each.
 </descrip><p>
@@ -194,61 +197,84 @@ really good:-).
 
 <sect1>Joystick drivers<p>
 
-The Commodore 610 is a business machine and doesn't have joystick ports. There
-are no drivers for the non existing ports available.
-
+The Commodore 610 is a business machine, and doesn't have joystick ports. There
+are no drivers for the non-existing ports available.
 
 
 <sect1>Mouse drivers<p>
 
-Currently no drivers available (in fact, the API for loadable mouse drivers
-does not exist).
+No mouse drivers are currently available for the Commodore 610.
 
 
 <sect1>RS232 device drivers<p>
 
 <descrip>
 
-  <tag><tt/cbm610-std.ser (cbm610_stdser)/</tag>
+  <tag><tt/cbm610-std.ser (cbm610_std_ser)/</tag>
   Driver for the 6551 ACIA chip built into the Commodore 610. Supports up to
-  19200 baud, hardware flow control (RTS/CTS) and interrupt driven receives.
-  Note that because of the peculiarities of the 6551 chip transmits are not
-  interrupt driven, and the transceiver blocks if the receiver asserts flow
+  19200 BPS, hardware flow control (RTS/CTS), and interrupt-driven receives.
+  Note that, because of the peculiarities of the 6551 chip, transmits are not
+  interrupt driven; and, the transceiver blocks if the receiver asserts flow
   control because of a full buffer.
 
 </descrip><p>
 
 
+
 <sect>Limitations<label id="limitations"><p>
 
 
+<sect1>Realtime clock<p>
+
+The realtime clock functions use the CIA1 TOD clock. As that clock only stores
+the time but not the date, the date set by <tt/clock_settime()/ is simply stored
+inside the C library for retrieval in the same program via <tt/clock_gettime()/.
+
+
 <sect1>Kernal and hardware access<p>
 
 Since the program runs in bank 1, and the kernal and all I/O chips are located
 in bank 15, calling ROM routines or accessing hardware needs special code. The
 cc65 runtime implements wrappers for all functions in the kernal jump table.
 While this simplifies things, it should be noted that the wrappers do have
-quite an impact on performance: A cross bank call has an extra 300&micro;s
+quite an impact on performance: A cross-bank call has an extra 300&micro;s
 penalty added by the wrapper.
 
+
 <sect1>Interrupts<p>
 
 Compiled programs contain an interrupt handler that runs in the program bank.
-This has several advantages, one of them being performance (see cross bank
+This has several advantages, one of them being performance (see cross-bank
 call overhead mentioned above). However, this introduces one problem:
 Interrupts are lost while the CPU executes code in the kernal bank. As a
-result, the clock may go wrong and (worse) serial interrupts may get lost.
+result, the clock may go wrong; and (worse), serial interrupts may get lost.
 
 Since the cc65 runtime does only call the kernal for disk I/O, this means that
 a program should not do file I/O while it depends on interrupts.
 
 
+
 <sect>Other hints<p>
 
+
 <sect1>Passing arguments to the program<p>
 
-Command line argument passing is currently not supported for the Commodore
-610.
+Command-line arguments can be passed to <tt/main()/. Since that is not
+supported directly by BASIC, the following syntax was chosen:
+
+<tscreen><verb>
+    RUN:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
+</verb></tscreen>
+
+<enum>
+<item>Arguments are separated by spaces.
+<item>Arguments may be quoted.
+<item>Leading and trailing spaces around an argument are ignored. Spaces within
+      a quoted argument are allowed.
+<item>The first argument passed to <tt/main()/ is the program name.
+<item>A maximum number of 10 arguments (including the program name) are
+      supported.
+</enum>
 
 
 <sect1>Program return code<p>
@@ -263,16 +289,7 @@ The runtime for the Commodore 610 uses routines marked as <tt/.INTERRUPTOR/
 for interrupt handlers. Such routines must be written as simple machine
 language subroutines and will be called automatically by the interrupt handler
 code when they are linked into a program. See the discussion of the
-<tt/.CONDES/ feature in the <htmlurl url="ca65.html" name="assembler manual">.
-
-
-
-<sect>Bugs/Feedback<p>
-
-If you have problems using the library, if you find any bugs, or if you're
-doing something interesting with it, I would be glad to hear from you. Feel
-free to contact me by email (<htmlurl url="mailto:uz@cc65.org"
-name="uz@cc65.org">).
+<tt/.CONDES/ feature in the <url url="ca65.html" name="assembler manual">.
 
 
 
@@ -287,14 +304,14 @@ including commercial applications, and to alter it and redistribute it
 freely, subject to the following restrictions:
 
 <enum>
-<item> The origin of this software must not be misrepresented; you must not
-       claim that you wrote the original software. If you use this software
-       in a product, an acknowledgment in the product documentation would be
-       appreciated but is not required.
-<item> Altered source versions must be plainly marked as such, and must not
-       be misrepresented as being the original software.
-<item> This notice may not be removed or altered from any source
-       distribution.
+<item>  The origin of this software must not be misrepresented; you must not
+        claim that you wrote the original software. If you use this software
+        in a product, an acknowledgment in the product documentation would be
+        appreciated but is not required.
+<item>  Altered source versions must be plainly marked as such, and must not
+        be misrepresented as being the original software.
+<item>  This notice may not be removed or altered from any source
+        distribution.
 </enum>
 
 </article>