Added two useful opcode mnemonic aliases.
bnz - jump if not zero. bze - jump if zero.
This commit is contained in:
parent
717121a7cf
commit
7d1d929391
1 changed files with 10 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue