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
|
||||
.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