mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
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:
parent
47135170d8
commit
0ced20c1cf
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user