diff options
| author | 2015-02-15 09:52:26 -0500 | |
|---|---|---|
| committer | 2015-02-15 09:52:26 -0500 | |
| commit | 46887afedaf2a9b0286c4ad65099135c2860beb6 (patch) | |
| tree | b1784a963ade92d8c74815de4d9066af0d491a1f /src | |
| parent | Merge pull request #529 from Subv/master (diff) | |
| parent | arm: Set the A bit on reset. (diff) | |
| download | yuzu-46887afedaf2a9b0286c4ad65099135c2860beb6.tar.gz yuzu-46887afedaf2a9b0286c4ad65099135c2860beb6.tar.xz yuzu-46887afedaf2a9b0286c4ad65099135c2860beb6.zip | |
Merge pull request #573 from lioncash/intflags
arm: Set the A bit on reset.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/skyeye_common/armemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/skyeye_common/armemu.h b/src/core/arm/skyeye_common/armemu.h index 8bfd4e0f0..2a1c50779 100644 --- a/src/core/arm/skyeye_common/armemu.h +++ b/src/core/arm/skyeye_common/armemu.h | |||
| @@ -35,7 +35,7 @@ enum : u32 { | |||
| 35 | 35 | ||
| 36 | // Masks for groups of bits in the APSR. | 36 | // Masks for groups of bits in the APSR. |
| 37 | MODEBITS = 0x1F, | 37 | MODEBITS = 0x1F, |
| 38 | INTBITS = 0xC0, | 38 | INTBITS = 0x1C0, |
| 39 | }; | 39 | }; |
| 40 | 40 | ||
| 41 | // Different ways to start the next instruction. | 41 | // Different ways to start the next instruction. |