--- BasiliskII/src/AmigaOS/timer_amiga.cpp 2001/07/06 17:36:07 1.6 +++ BasiliskII/src/AmigaOS/timer_amiga.cpp 2006/04/30 21:13:21 1.9 @@ -20,8 +20,11 @@ #include #include +#define __USE_SYSBASE #include #include +#include +#include #include "sysdeps.h" #include "timer.h" @@ -133,3 +136,22 @@ int32 timer_host2mac_time(tm_time_t host 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) +{ +}