]> git.sur5r.net Git - cc65/commitdiff
Spelling and other small fixes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Aug 2005 22:34:08 +0000 (22:34 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Aug 2005 22:34:08 +0000 (22:34 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3581 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/ca65.sgml

index 04aa0b9181eadb738b6b447ed08f92fdb1fbe586..1a82788f050a5c824824c314f2bf22993028a96b 100644 (file)
@@ -2929,6 +2929,12 @@ Here's a list of all control commands and a description, what they do:
   See: <tt><ref id=".POPSEG" name=".POPSEG"></tt>
 
 
+<sect1><tt>.RELOC</tt><label id=".RELOC"><p>
+
+  Switch back to relocatable mode. See the <tt><ref id=".ORG"
+  name=".ORG"></tt> command.
+
+
 <sect1><tt>.REPEAT</tt><label id=".REPEAT"><p>
 
   Repeat all commands between <tt/.REPEAT/ and <tt><ref id=".ENDREPEAT"
@@ -2959,12 +2965,6 @@ Here's a list of all control commands and a description, what they do:
   See: <tt><ref id=".ENDREPEAT" name=".ENDREPEAT"></tt>
 
 
-<sect1><tt>.RELOC</tt><label id=".RELOC"><p>
-
-  Switch back to relocatable mode. See the <tt><ref id=".ORG"
-  name=".ORG"></tt> command.
-
-
 <sect1><tt>.RES</tt><label id=".RES"><p>
 
   Reserve storage. The command is followed by one or two constant
@@ -4014,17 +4014,16 @@ writing new code from scratch.
 
 <item>Replace all program counter assignments (which are not possible in ca65
 by default, and the respective emulation feature works different from what
-you'd expect) by another way to skip to another memory location, for example
-the <tt><ref id=".RES" name=".RES"></tt>directive.
+you'd expect) by another way to skip to memory locations, for example the
+<tt><ref id=".RES" name=".RES"></tt> directive.
 
 <tscreen><verb>
         ; *=$2000
         .res $2000-*    ; reserve memory up to $2000
 </verb></tscreen>
 
-notice that other than the original TASS, ca65 can never move the
-programmcounter backwards - think of it as if you are assembling to disc with
-TASS.
+Please note that other than the original TASS, ca65 can never move the program
+counter backwards - think of it as if you are assembling to disk with TASS.
 
 <item>Conditional assembly (<tt/.ifeq//<tt/.endif//<tt/.goto/ etc.) must be
 rewritten to match ca65 syntax. Most importantly notice that due to the lack
@@ -4049,8 +4048,8 @@ of <tt/.goto/, everything involving loops must be replaced by
         cl65 --start-addr 0x0ffe -t none myprog.s -o myprog.prg
 </verb></tscreen>
 
-notice that you need to use the actual start address minus two, since two
-bytes are used for the cbm load address.
+Note that you need to use the actual start address minus two, since two bytes
+are used for the cbm load address.
 
 </enum>