1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00

Merge pull request #8 from greg-king5/generic

Added two useful opcode mnemonic aliases.
This commit is contained in:
Oliver Schmidt 2013-05-07 23:55:14 -07:00
commit e8e58d82e0

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