From 6222cd91156ea037b0b654daeab814be1f900b7a Mon Sep 17 00:00:00 2001 From: mrdudz Date: Sat, 14 Oct 2023 23:04:12 +0200 Subject: [PATCH] don't use a label in the bgt macro, as that may cause subtle problems. fixes #2222 --- asminc/generic.mac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/asminc/generic.mac b/asminc/generic.mac index bc6f5924e..5e5b210f5 100644 --- a/asminc/generic.mac +++ b/asminc/generic.mac @@ -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