nec core, VezIdle standardize

This commit is contained in:
dinkc64 2020-12-23 23:39:34 -05:00
parent a003f194c5
commit 1ea9b3d803
2 changed files with 4 additions and 2 deletions

View File

@ -479,7 +479,7 @@ void VezRunEnd()
VezCurrentCPU->runend();
}
void VezIdle(INT32 cycles)
INT32 VezIdle(INT32 cycles)
{
#if defined FBNEO_DEBUG
if (!DebugCPU_VezInitted) bprintf(PRINT_ERROR, _T("VezIdle called without init\n"));
@ -487,6 +487,8 @@ void VezIdle(INT32 cycles)
#endif
VezCurrentCPU->idle(cycles);
return cycles;
}
INT32 VezTotalCycles()

View File

@ -20,7 +20,7 @@ extern INT32 nVezCount;
INT32 VezTotalCycles();
void VezNewFrame();
void VezRunEnd();
void VezIdle(INT32 cycles);
INT32 VezIdle(INT32 cycles);
INT32 VezInit(INT32 nCPU, INT32 type, INT32 clock); // v20/v25/v30/v33/v35
INT32 VezInit(INT32 cpu, INT32 type); // v20/v30/v33 only