]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
JIT: added flags_x86.h, removed old flags_x86.h
authorFrode Solheim <frode@fs-uae.net>
Sun, 6 Sep 2015 18:22:39 +0000 (20:22 +0200)
committerFrode Solheim <frode@fs-uae.net>
Sun, 6 Sep 2015 19:13:05 +0000 (12:13 -0700)
jit/flags_x86.h [moved from include/flags_x86.h with 84% similarity]

similarity index 84%
rename from include/flags_x86.h
rename to jit/flags_x86.h
index 3192fbcc4353e476d1a6f0e6de33ef6f9e801249..310dbcc3329d04fbf83b8d6324c7beb6b08da04a 100644 (file)
@@ -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 */