mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +00:00
Added two useful opcode mnemonic aliases.
bnz - jump if not zero. bze - jump if zero.
This commit is contained in:
@@ -43,3 +43,13 @@ L:
|
|||||||
bcc Arg
|
bcc Arg
|
||||||
.endmacro
|
.endmacro
|
||||||
|
|
||||||
|
; bnz - jump if not zero
|
||||||
|
.macro bnz Arg
|
||||||
|
bne Arg
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
; bze - jump if zero
|
||||||
|
.macro bze Arg
|
||||||
|
beq Arg
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user