Spelling and other small fixes

git-svn-id: svn://svn.cc65.org/cc65/trunk@3581 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-08-12 22:34:08 +00:00
parent 3e43521d19
commit 6c4bba6616

View 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> 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> <sect1><tt>.REPEAT</tt><label id=".REPEAT"><p>
Repeat all commands between <tt/.REPEAT/ and <tt><ref id=".ENDREPEAT" 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> 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> <sect1><tt>.RES</tt><label id=".RES"><p>
Reserve storage. The command is followed by one or two constant 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 <item>Replace all program counter assignments (which are not possible in ca65
by default, and the respective emulation feature works different from what 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 you'd expect) by another way to skip to memory locations, for example the
the <tt><ref id=".RES" name=".RES"></tt>directive. <tt><ref id=".RES" name=".RES"></tt> directive.
<tscreen><verb> <tscreen><verb>
; *=$2000 ; *=$2000
.res $2000-* ; reserve memory up to $2000 .res $2000-* ; reserve memory up to $2000
</verb></tscreen> </verb></tscreen>
notice that other than the original TASS, ca65 can never move the Please note that other than the original TASS, ca65 can never move the program
programmcounter backwards - think of it as if you are assembling to disc with counter backwards - think of it as if you are assembling to disk with TASS.
TASS.
<item>Conditional assembly (<tt/.ifeq//<tt/.endif//<tt/.goto/ etc.) must be <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 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 cl65 --start-addr 0x0ffe -t none myprog.s -o myprog.prg
</verb></tscreen> </verb></tscreen>
notice that you need to use the actual start address minus two, since two Note that you need to use the actual start address minus two, since two bytes
bytes are used for the cbm load address. are used for the cbm load address.
</enum> </enum>