Add a namespace to DSPHost.

Gets rid of the "DSPHost_" prefix in function names.
This commit is contained in:
Lioncash
2014-03-09 12:30:13 -04:00
parent 2254e5a14b
commit db0596e088
7 changed files with 54 additions and 45 deletions

View File

@ -119,7 +119,7 @@ void gdsp_ifx_write(u32 addr, u32 val)
{
case DSP_DIRQ:
if (val & 0x1)
DSPHost_InterruptRequest();
DSPHost::InterruptRequest();
else
INFO_LOG(DSPLLE, "Unknown Interrupt Request pc=%04x (%04x)", g_dsp.pc, val);
break;
@ -246,7 +246,7 @@ static void gdsp_idma_in(u16 dsp_addr, u32 addr, u32 size)
}
WriteProtectMemory(g_dsp.iram, DSP_IRAM_BYTE_SIZE, false);
DSPHost_CodeLoaded((const u8*)g_dsp.iram + dsp_addr, size);
DSPHost::CodeLoaded((const u8*)g_dsp.iram + dsp_addr, size);
NOTICE_LOG(DSPLLE, "*** Copy new UCode from 0x%08x to 0x%04x (crc: %8x)", addr, dsp_addr, g_dsp.iram_crc);
}