diff options
author | Richard Henderson <rth@twiddle.net> | 2011-04-18 12:17:02 -0700 |
---|---|---|
committer | Richard Henderson <rth@anchor.twiddle.net> | 2011-05-31 10:18:04 -0700 |
commit | 352e48b0f492359559cb46f8b3222bac9c461ac4 (patch) | |
tree | 8b6bb312ae0d46ff3933c0ab4ad2c7ef8e3a2c24 /target-alpha/helper.c | |
parent | bf1b03fe182eb5a0df9ec6fc4121d8a36e1fdb97 (diff) |
target-alpha: Remove partial support for palcode emulation.
This code does not work, and will be replaced by a bios image.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-alpha/helper.c')
-rw-r--r-- | target-alpha/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-alpha/helper.c b/target-alpha/helper.c index 3ba4478c8e..f7cf4ee1b1 100644 --- a/target-alpha/helper.c +++ b/target-alpha/helper.c @@ -528,7 +528,7 @@ void do_interrupt (CPUState *env) env->pc = env->ipr[IPR_PAL_BASE] + excp; } else { /* We use emulated PALcode */ - call_pal(env); + abort(); /* Emulate REI */ env->pc = env->ipr[IPR_EXC_ADDR] & ~7; env->ipr[IPR_EXC_ADDR] = env->ipr[IPR_EXC_ADDR] & 1; |