From 2f07222106358a02f56bf1e344d1fbf7ead14cbd Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Fri, 18 Feb 2005 17:52:48 +0000 Subject: [PATCH] Bug #2455: Make x86emu handle JNL correctly. (David Wong) --- hw/xfree86/x86emu/ops2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/x86emu/ops2.c b/hw/xfree86/x86emu/ops2.c index d9e5de9c5..d99bb412f 100644 --- a/hw/xfree86/x86emu/ops2.c +++ b/hw/xfree86/x86emu/ops2.c @@ -130,7 +130,7 @@ static void x86emuOp2_long_jump(u8 op2) break; case 0x8d: name = "JNL\t"; - cond = xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)); + cond = !(xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF))); break; case 0x8e: name = "JLE\t";