Fix compile error.

This commit is contained in:
Aaron Giles 2008-12-10 17:41:30 +00:00
parent 258b16c5d1
commit 5f39c19227

View File

@ -3240,7 +3240,6 @@ static CPU_RESET( sh4 )
void *tsaved[4]; void *tsaved[4];
emu_timer *tsave[5]; emu_timer *tsave[5];
UINT32 *m; UINT32 *m;
int cpunum;
int save_is_slave; int save_is_slave;
int savecpu_clock, savebus_clock, savepm_clock; int savecpu_clock, savebus_clock, savepm_clock;
@ -3290,7 +3289,7 @@ static CPU_RESET( sh4 )
sh4_default_exception_priorities(sh4); sh4_default_exception_priorities(sh4);
memset(sh4->exception_requesting, 0, sizeof(sh4->exception_requesting)); memset(sh4->exception_requesting, 0, sizeof(sh4->exception_requesting));
timer_adjust_oneshot(sh4->rtc_timer, ATTOTIME_IN_HZ(128), cpunum); timer_adjust_oneshot(sh4->rtc_timer, ATTOTIME_IN_HZ(128), 0);
sh4->m[RCR2] = 0x09; sh4->m[RCR2] = 0x09;
sh4->m[TCOR0] = 0xffffffff; sh4->m[TCOR0] = 0xffffffff;
sh4->m[TCNT0] = 0xffffffff; sh4->m[TCNT0] = 0xffffffff;