mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
Added two useful opcode mnemonic aliases.
bnz - jump if not zero. bze - jump if zero.
This commit is contained in:
parent
717121a7cf
commit
7d1d929391
@ -43,3 +43,13 @@ L:
|
||||
bcc Arg
|
||||
.endmacro
|
||||
|
||||
; bnz - jump if not zero
|
||||
.macro bnz Arg
|
||||
bne Arg
|
||||
.endmacro
|
||||
|
||||
; bze - jump if zero
|
||||
.macro bze Arg
|
||||
beq Arg
|
||||
.endmacro
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user