mirror of
https://github.com/cc65/cc65.git
synced 2025-02-24 09:29:07 +00:00
don't use a label in the bgt macro, as that may cause subtle problems. fixes #2222
This commit is contained in:
parent
2726192aaf
commit
6222cd9115
@ -31,10 +31,8 @@
|
|||||||
|
|
||||||
; bgt - jump if unsigned greater
|
; bgt - jump if unsigned greater
|
||||||
.macro bgt Arg
|
.macro bgt Arg
|
||||||
.local L
|
beq *+4
|
||||||
beq L
|
|
||||||
bcs Arg
|
bcs Arg
|
||||||
L:
|
|
||||||
.endmacro
|
.endmacro
|
||||||
|
|
||||||
; ble - jump if unsigned less or equal
|
; ble - jump if unsigned less or equal
|
||||||
|
Loading…
x
Reference in New Issue
Block a user