* mn10300_sim.h: Fix ordering of bits in the PSW.
[deliverable/binutils-gdb.git] / sim / mn10300 / mn10300_sim.h
index 2fcb85a78f5072c1697cb9fa15872c4084e75d81..40cef234bb40ae426c2c6d45ff6d4229c53ed4f0 100644 (file)
@@ -72,10 +72,10 @@ extern struct simops Simops[];
 #define PC     (State.regs[9])
 
 #define PSW (State.regs[11])
-#define PSW_V 0x1
-#define PSW_C 0x2
-#define PSW_N 0x4
-#define PSW_Z 0x8
+#define PSW_Z 0x1
+#define PSW_N 0x2
+#define PSW_C 0x4
+#define PSW_V 0x8
 
 #define REG_D0 0
 #define REG_A0 4
This page took 0.026629 seconds and 4 git commands to generate.