summaryrefslogtreecommitdiff
path: root/target-arm/cpu.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2014-02-20 10:35:51 +0000
committerPeter Maydell <peter.maydell@linaro.org>2014-02-20 10:35:51 +0000
commit76e3e1bcaefe0da394f328854cb72f9449f23732 (patch)
treea93064e9d926153d9c297d19a1848abfe1001f68 /target-arm/cpu.c
parent83e9a4aec9ffcbcb86ca9d39d2c5aae8176411fb (diff)
downloadqemu-76e3e1bcaefe0da394f328854cb72f9449f23732.tar.gz
target-arm: Define names for SCTLR bits
The SCTLR is full of bits for enabling or disabling various things, and so there are many places in the code which check if certain bits are set. Define some named constants for the SCTLR bits so these checks are easier to read. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm/cpu.c')
-rw-r--r--target-arm/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/cpu.c b/target-arm/cpu.c
index 45ad7f0260..82943428bc 100644
--- a/target-arm/cpu.c
+++ b/target-arm/cpu.c
@@ -128,7 +128,7 @@ static void arm_cpu_reset(CPUState *s)
}
}
- if (env->cp15.c1_sys & (1 << 13)) {
+ if (env->cp15.c1_sys & SCTLR_V) {
env->regs[15] = 0xFFFF0000;
}