Skip to content
Snippets Groups Projects
Commit 473afa45 authored by Lioncash's avatar Lioncash
Browse files

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.
parent 12181c8a
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ enum : u32 { ...@@ -35,7 +35,7 @@ enum : u32 {
// Masks for groups of bits in the APSR. // Masks for groups of bits in the APSR.
MODEBITS = 0x1F, MODEBITS = 0x1F,
INTBITS = 0xC0, INTBITS = 0x1C0,
}; };
// Different ways to start the next instruction. // Different ways to start the next instruction.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment