diff options
author | Richard Henderson <rth@twiddle.net> | 2011-04-18 14:19:17 -0700 |
---|---|---|
committer | Richard Henderson <rth@anchor.twiddle.net> | 2011-05-31 10:18:05 -0700 |
commit | ea879fc719b0756f1768f765ee3a5660ce05ca7b (patch) | |
tree | 5a8a635b5472ca1eed236e74f0174e2ed17bebac /target-alpha/translate.c | |
parent | 2d9671d391531a9bc3e79b8a7538dd06f3094623 (diff) |
target-alpha: Add various symbolic constants.
The EXC_M_* constants were being set for the EV6, not as set for
the Unix kernel entry point.
Use PS_USER_MODE instead of hard-coding access to the PS register.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-alpha/translate.c')
-rw-r--r-- | target-alpha/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 5f40d347a9..2f3c637b68 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -3269,7 +3269,7 @@ CPUAlphaState * cpu_alpha_init (const char *cpu_model) env->amask = amask; #if defined (CONFIG_USER_ONLY) - env->ps = 1 << 3; + env->ps = PS_USER_MODE; cpu_alpha_store_fpcr(env, (FPCR_INVD | FPCR_DZED | FPCR_OVFD | FPCR_UNFD | FPCR_INED | FPCR_DNOD)); #endif |