diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-24 01:47:51 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-24 01:47:51 +0000 |
commit | 4de9b249d37c1b382cc3e5a21fad1b4a11cec2fa (patch) | |
tree | 3991d58b09108b5c18a4388b2c2a8b6cb8f57142 /target-mips/op_helper.c | |
parent | 30c4bbace19e802979009cc5c16fb4e14dc6bda6 (diff) | |
download | qemu-4de9b249d37c1b382cc3e5a21fad1b4a11cec2fa.zip |
Reworking MIPS interrupt handling, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2350 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index bea5a905e1..9596d04fb6 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -265,6 +265,11 @@ void cpu_mips_store_compare(CPUState *env, uint32_t value) cpu_abort(env, "mtc0 compare\n"); } +void cpu_mips_update_irq(CPUState *env) +{ + cpu_abort(env, "mtc0 status / mtc0 cause\n"); +} + void do_mtc0_status_debug(uint32_t old, uint32_t val) { cpu_abort(env, "mtc0 status debug\n"); |