1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-05 17:25:17 +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

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