From a1c55c0d64bc92fada10226edb691d49beb9913a Mon Sep 17 00:00:00 2001 From: Jesse McDonald Date: Wed, 28 Oct 2020 01:21:02 -0500 Subject: [PATCH] fix for inverted condition in ABS --- jumpforth.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jumpforth.S b/jumpforth.S index a172517..9c27ee2 100644 --- a/jumpforth.S +++ b/jumpforth.S @@ -454,7 +454,7 @@ defcode NEGATE defcode ABS pop %eax test %eax,%eax - jl 0f + jnl 0f neg %eax 0: push %eax NEXT