mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DSPLLE stuff - no real progress, mostly useful as a reference for HLE improvement, Pikmin 1 has sound in intro though (can't be sure if its ok, because its too slow)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4496 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -158,8 +158,12 @@ void zeroWriteBackLog();
|
||||
|
||||
inline void ExecuteInstruction(const UDSPInstruction& inst)
|
||||
{
|
||||
if (opTableUseExt[inst.hex])
|
||||
extOpTable[inst.hex & 0xFF](inst);
|
||||
if (opTableUseExt[inst.hex]) {
|
||||
if ((inst.hex >> 12) == 0x3)
|
||||
extOpTable[inst.hex & 0x7F](inst);
|
||||
else
|
||||
extOpTable[inst.hex & 0xFF](inst);
|
||||
}
|
||||
opTable[inst.hex](inst);
|
||||
if (opTableUseExt[inst.hex]) {
|
||||
applyWriteBackLog();
|
||||
|
Reference in New Issue
Block a user