]> git.sur5r.net Git - cc65/commitdiff
Fixed a few problems with the docs as suggested by Spiro Trikaliotis resp.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 15 Feb 2009 16:54:58 +0000 (16:54 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 15 Feb 2009 16:54:58 +0000 (16:54 +0000)
Greg King.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3933 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/ca65.sgml
doc/cbm510.sgml
doc/cbm610.sgml
doc/co65.sgml

index 96c5989f253b140a4f11c55766c2a19ec7547b5e..f93eb69c4302633dc0ddb152bc7f0dc0c42cacfc 100644 (file)
@@ -3823,7 +3823,7 @@ compiler, depending on the target system selected:
 
 <sect>Structs and unions<label id="structs"><p>
 
-<sect1>Overview<p>
+<sect1>Structs and unions Overview<p>
 
 Structs and unions are special forms of <ref id="scopes" name="scopes">.  They
 are to some degree comparable to their C counterparts. Both have a list of
@@ -3918,7 +3918,7 @@ below uses examples from the C libraries. However, the feature may also be
 useful for assembler programs.
 
 
-<sect1>Overview<p>
+<sect1>Module constructors/destructors Overview<p>
 
 Using the <tt><ref id=".CONSTRUCTOR" name=".CONSTRUCTOR"></tt>, <tt><ref
 id=".DESTRUCTOR" name=".DESTRUCTOR"></tt> and <tt><ref id=".INTERRUPTOR"
index 1a1f871af652207a1f25358d6feb85a21c2c6f8e..6b5f40cb17dbafecea96e2f2d54c7ffbf86a6600 100644 (file)
@@ -254,7 +254,7 @@ The program return code (signed char) is passed back to BASIC by use of the
 <tt/ST/ variable.
 
 
-<sect1>Interrupts<p>
+<sect1>Interrupt handlers<p>
 
 The runtime for the Commodore 510 uses routines marked as <tt/.CONDES/ type 2
 for interrupt handlers. Such routines must be written as simple machine
index 8e2ac2ce908c7a61b5300759ed479fa77b03a28b..a01cd9bc60a548170a0f09931c11ccf8c2eab73b 100644 (file)
@@ -254,7 +254,7 @@ The program return code (low byte) is passed back to BASIC by use of the
 <tt/ST/ variable.
 
 
-<sect1>Interrupts<p>
+<sect1>Interrupt handlers<p>
 
 The runtime for the Commodore 610 uses routines marked as <tt/.CONDES/ type 2
 for interrupt handlers. Such routines must be written as simple machine
index 274b5e85b0c2e201d79e208b86b753f9a985d0ee..5e87545a5b503ab24c0ef281835d7a2f95bbc318 100644 (file)
@@ -274,9 +274,9 @@ it from C code. In your code, define an arbitrary variable with this name. Use
 the address of this variable as the address of the code segment of the driver.
 Be sure to never modify the variable which is in reality the start of your
 driver!
-                          
 
-<sect1>Example: Convert and link a graphics driver<p>
+
+<sect1>Example - Convert and link a graphics driver<p>
 
 As an example, here are some instructions to convert and use the c64-hi.tgi
 graphics driver: