Ejemplo n.º 1
0
// Coming from the CPU
void DSPCore_CheckExternalInterrupt()
{
	if (! dsp_SR_is_flag_set(SR_EXT_INT_ENABLE))
		return;

	// Signal the SPU about new mail
	DSPCore_SetException(EXP_INT);

	g_dsp.cr &= ~CR_EXTERNAL_INT;
}
Ejemplo n.º 2
0
 void OnEndException() override { DSPCore_SetException(EXP_ACCOV); }