@@ -826,7 +826,7 @@ Here's a list of all control commands and a description, what they do:
Example:
- .include .concat ("myheader", ".", "inc)
+ .include .concat ("myheader", ".", "inc")
This is the same as the command
@@ -1664,7 +1664,7 @@ Here's a list of all control commands and a description, what they do:
(the macro name) and optionally by a comma separated list of identifiers
that are macro parameters.
- See section [).
+ See section ][.
].MATCH
@@ -1711,7 +1711,7 @@ Here's a list of all control commands and a description, what they do:
.endif
cmp #$80 ; Bit 7 into carry
- lsr a ; Shit carry into bit 7
+ lsr a ; Shift carry into bit 7
.endmacro
@@ -2402,30 +2402,27 @@ Now, with recursive macros, and
Have a look at the inc16 macro above. Here is it again:
- .macro inc16 addr
- clc
- lda addr
- adc #$01
- sta addr
- lda addr+1
- adc #$00
- sta addr+1
- .endmacro
+ .macro inc16 addr
+ clc
+ lda addr
+ adc #$01
+ sta addr
+ lda addr+1
+ adc #$00
+ sta addr+1
+ .endmacro
If you have a closer look at the code, you will notice, that it could be
written more efficiently, like this:
- .macro inc16 addr
- clc
- lda addr
- adc #$01
- sta addr
- bcc Skip
- inc addr+1
- Skip:
- .endmacro
+ .macro inc16 addr
+ inc addr
+ bne Skip
+ inc addr+1
+ Skip:
+ .endmacro
But imagine what happens, if you use this macro twice? Since the label
@@ -2437,12 +2434,9 @@ macro:
.macro inc16 addr
.proc
- clc
- lda addr
- adc #$01
- sta addr
- bcc Skip
- inc addr+1
+ inc addr
+ bne Skip
+ inc addr+1
Skip:
.endproc
.endmacro
@@ -2474,7 +2468,7 @@ also solve the problem above by using
@@ -2735,7 +2729,7 @@ hear from you. Feel free to contact me by email
Copyright
-ca65 (and all cc65 binutils) are (C) Copyright 1998-2000 Ullrich von
+ca65 (and all cc65 binutils) are (C) Copyright 1998-2001 Ullrich von
Bassewitz. For usage of the binaries and/or sources the following
conditions do apply: