diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-25 16:53:15 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-25 16:53:15 +0000 |
commit | 42532189dfba7a5675225b7b3d6da3d80f8c2447 (patch) | |
tree | 3d1e8f329f076ccb5717e0962370cf9d22fef118 /target-mips/op_helper.c | |
parent | b51eaa8218f4bd9cfd9a10b7014676035289ef56 (diff) | |
download | qemu-42532189dfba7a5675225b7b3d6da3d80f8c2447.zip qemu-42532189dfba7a5675225b7b3d6da3d80f8c2447.tar.gz qemu-42532189dfba7a5675225b7b3d6da3d80f8c2447.tar.bz2 |
Timer start/stop implementation, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3237 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 6405f80..6b007a6 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -265,6 +265,16 @@ void cpu_mips_store_compare(CPUState *env, uint32_t value) cpu_abort(env, "mtc0 compare\n"); } +void cpu_mips_start_count(CPUState *env) +{ + cpu_abort(env, "start count\n"); +} + +void cpu_mips_stop_count(CPUState *env) +{ + cpu_abort(env, "stop count\n"); +} + void cpu_mips_update_irq(CPUState *env) { cpu_abort(env, "mtc0 status / mtc0 cause\n"); |