808x: Rename wait() to wait_cycs() to avoid conflict with the Apple SDK.
This commit is contained in:
572
src/cpu/808x.c
572
src/cpu/808x.c
File diff suppressed because it is too large
Load Diff
@@ -581,7 +581,7 @@ static int
|
||||
FPU_ILLEGAL_a16(UNUSED(uint32_t fetchdat))
|
||||
{
|
||||
geteaw();
|
||||
wait(timing_rr, 0);
|
||||
wait_cycs(timing_rr, 0);
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
@@ -7,7 +7,7 @@ opFI(uint32_t fetchdat)
|
||||
cpu_state.npxc &= ~0x80;
|
||||
if (rmdat == 0xe1)
|
||||
cpu_state.npxc |= 0x80;
|
||||
wait(3, 0);
|
||||
wait_cycs(3, 0);
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
@@ -354,7 +354,7 @@ sf_FI(uint32_t fetchdat)
|
||||
fpu_state.cwd &= ~FPU_SW_Summary;
|
||||
if (rmdat == 0xe1)
|
||||
fpu_state.cwd |= FPU_SW_Summary;
|
||||
wait(3, 0);
|
||||
wait_cycs(3, 0);
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user