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
1 changed files with 4 additions and 3 deletions

View File

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