1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-09 06:29:38 +00:00

don't use a label in the bgt macro, as that may cause subtle problems. fixes #2222

This commit is contained in:
mrdudz 2023-10-14 23:04:12 +02:00
parent 2726192aaf
commit 6222cd9115

View File

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