mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-02-17 06:31:14 +00:00
Implement dummy idle suspend/resume routines for AmigOS
This commit is contained in:
parent
8fa12f4819
commit
52ff4b209b
@ -136,3 +136,22 @@ int32 timer_host2mac_time(tm_time_t hosttime)
|
|||||||
return -t; // Time in negative microseconds
|
return -t; // Time in negative microseconds
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Suspend emulator thread, virtual CPU in idle mode
|
||||||
|
*/
|
||||||
|
|
||||||
|
void idle_wait(void)
|
||||||
|
{
|
||||||
|
// XXX if you implement this make sure to call idle_resume() from TriggerInterrupt()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Resume execution of emulator thread, events just arrived
|
||||||
|
*/
|
||||||
|
|
||||||
|
void idle_resume(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user