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
1 changed files with 1 additions and 3 deletions

View File

@ -31,10 +31,8 @@
; bgt - jump if unsigned greater
.macro bgt Arg
.local L
beq L
beq *+4
bcs Arg
L:
.endmacro
; ble - jump if unsigned less or equal