Corrected the list of macros in the macro packages.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4730 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -3954,18 +3954,38 @@ are:
|
|||||||
<sect1><tt>.MACPACK generic</tt><p>
|
<sect1><tt>.MACPACK generic</tt><p>
|
||||||
|
|
||||||
This macro package defines macros that are useful in almost any program.
|
This macro package defines macros that are useful in almost any program.
|
||||||
Currently, two macros are defined:
|
Currently defined macros are:
|
||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
.macro add Arg
|
.macro add Arg
|
||||||
clc
|
clc
|
||||||
adc Arg
|
adc Arg
|
||||||
.endmacro
|
.endmacro
|
||||||
|
|
||||||
.macro sub Arg
|
.macro sub Arg
|
||||||
sec
|
sec
|
||||||
sbc Arg
|
sbc Arg
|
||||||
.endmacro
|
.endmacro
|
||||||
|
|
||||||
|
.macro bge Arg
|
||||||
|
bcs Arg
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro blt Arg
|
||||||
|
bcc Arg
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro bgt Arg
|
||||||
|
.local L
|
||||||
|
beq L
|
||||||
|
bcs Arg
|
||||||
|
L:
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro ble Arg
|
||||||
|
beq Arg
|
||||||
|
bcc Arg
|
||||||
|
.endmacro
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user