mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DSP: Move the condition code stuff to a separate file.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2873 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -107,6 +107,9 @@ void gdsp_init()
|
||||
}
|
||||
|
||||
// Fill roms with zeros.
|
||||
memset(g_dsp.irom, 0, DSP_IROM_SIZE * sizeof(u16));
|
||||
memset(g_dsp.drom, 0, DSP_DROM_SIZE * sizeof(u16));
|
||||
memset(g_dsp.coef, 0, DSP_COEF_SIZE * sizeof(u16));
|
||||
|
||||
for (int i = 0; i < 32; i++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user