mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
Timer start/stop implementation, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3237 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
b51eaa8218
commit
42532189df
4 changed files with 46 additions and 8 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue