Преглед на файлове

arm: Set the A bit on reset.

This enum value is ORed against in ARMul_Reset (and used to refer to all interrupt bits in the CPSR). So simply updating this is enough.
Lioncash преди 11 години
родител
ревизия
473afa4530
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/core/arm/skyeye_common/armemu.h

+ 1 - 1
src/core/arm/skyeye_common/armemu.h

@@ -35,7 +35,7 @@ enum : u32 {
 
     // Masks for groups of bits in the APSR.
     MODEBITS = 0x1F,
-    INTBITS  = 0xC0,
+    INTBITS  = 0x1C0,
 };
 
 // Different ways to start the next instruction.