mirror of
https://github.com/cc65/cc65.git
synced 2025-04-09 10:39:40 +00:00
Merge pull request #8 from greg-king5/generic
Added two useful opcode mnemonic aliases.
This commit is contained in:
commit
e8e58d82e0
@ -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…
x
Reference in New Issue
Block a user