From 5728f444ec7c6995b3f009284d2e91a05ee2139a Mon Sep 17 00:00:00 2001 From: Frode Solheim Date: Sun, 6 Sep 2015 20:22:39 +0200 Subject: [PATCH] JIT: added flags_x86.h, removed old flags_x86.h --- {include => jit}/flags_x86.h | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) rename {include => jit}/flags_x86.h (84%) diff --git a/include/flags_x86.h b/jit/flags_x86.h similarity index 84% rename from include/flags_x86.h rename to jit/flags_x86.h index 3192fbcc..310dbcc3 100644 --- a/include/flags_x86.h +++ b/jit/flags_x86.h @@ -3,10 +3,10 @@ * * Original 68040 JIT compiler for UAE, copyright 2000-2002 Bernd Meyer * - * Adaptation for Basilisk II and improvements, copyright 2000-2005 + * Adaptation for Basilisk II and improvements, copyright 2000-2002 * Gwenole Beauchesne * - * Basilisk II (C) 1997-2005 Christian Bauer + * Basilisk II (C) 1997-2002 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,8 +23,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef UAE_FLAGS_X86_H -#define UAE_FLAGS_X86_H +#ifndef NATIVE_FLAGS_X86_H +#define NATIVE_FLAGS_X86_H /* Native integer code conditions */ enum { @@ -34,8 +34,8 @@ enum { NATIVE_CC_CS = 2, NATIVE_CC_NE = 5, NATIVE_CC_EQ = 4, - NATIVE_CC_VC = 11, - NATIVE_CC_VS = 10, + NATIVE_CC_VC = 1, + NATIVE_CC_VS = 0, NATIVE_CC_PL = 9, NATIVE_CC_MI = 8, NATIVE_CC_GE = 13, @@ -44,4 +44,9 @@ enum { NATIVE_CC_LE = 14 }; -#endif /* UAE_FLAGS_X86_H */ +/* FIXME: include/flags_x86.h in UAE had the following values: + NATIVE_CC_VC = 11, + NATIVE_CC_VS = 10, +*/ + +#endif /* NATIVE_FLAGS_X86_H */ -- 2.47.3