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:
hrydgard
2009-04-05 12:20:30 +00:00
parent 6eb6db21ce
commit 7368d712d6
6 changed files with 212 additions and 132 deletions

View File

@ -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++)
{