1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Added two useful opcode mnemonic aliases.

bnz - jump if not zero.
bze - jump if zero.
This commit is contained in:
Greg King 2013-05-07 19:59:16 -04:00
parent 717121a7cf
commit 7d1d929391

View File

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