From 473afa453067fa95201a91fa1db3f4f8cf6e6fc0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 14 Feb 2015 22:34:01 -0500 Subject: 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. --- src/core/arm/skyeye_common/armemu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/arm/skyeye_common') diff --git a/src/core/arm/skyeye_common/armemu.h b/src/core/arm/skyeye_common/armemu.h index 8bfd4e0f..2a1c5077 100644 --- a/src/core/arm/skyeye_common/armemu.h +++ b/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. -- cgit v1.2.3