hacky pro/epi solution, following XK's suggestion.

This doesn't fix zelda boot, XK can you check why?



git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2845 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-04-03 10:55:42 +00:00
parent d3552a8e2c
commit 38e3b7039a
4 changed files with 223 additions and 221 deletions

View File

@ -1387,7 +1387,7 @@ void msubc(const UDSPInstruction& opc)
void srs(const UDSPInstruction& opc)
{
u8 reg = ((opc.hex >> 8) & 0x7) + 0x18;
u8 reg = ((opc.hex >> 8) & 0x7) + 0x18;
u16 addr = (s8)opc.hex;
dsp_dmem_write(addr, g_dsp.r[reg]);
}