just a test for shfl2|bot

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7552 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar 2011-05-19 16:31:46 +00:00
parent 47135170d8
commit 0ced20c1cf

View File

@ -370,6 +370,7 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
break;
default:
_uReturnValue = 0;
_dbg_assert_(DSPINTERFACE,0);
break;
}
@ -580,15 +581,15 @@ void Write32(const u32 _iValue, const u32 _iAddress)
// ARAM
case AR_DMA_MMADDR_H:
g_arDMA.MMAddr = _iValue;
g_arDMA.MMAddr = _iValue & ~31;
break;
case AR_DMA_ARADDR_H:
g_arDMA.ARAddr = _iValue;
g_arDMA.ARAddr = _iValue & ~31;
break;
case AR_DMA_CNT_H:
g_arDMA.Cnt.Hex = _iValue;
g_arDMA.Cnt.Hex = _iValue & ~31;
Do_ARAM_DMA();
break;