mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
...comment out some PanicAlerts added in last commit that people will probably find annoying
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4959 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -310,7 +310,7 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
|
|||||||
|
|
||||||
// ARAM
|
// ARAM
|
||||||
case AR_INFO:
|
case AR_INFO:
|
||||||
PanicAlert("read %x %x", g_ARAM_Info.Hex,PowerPC::ppcState.pc);
|
//PanicAlert("read %x %x", g_ARAM_Info.Hex,PowerPC::ppcState.pc);
|
||||||
_uReturnValue = g_ARAM_Info.Hex;
|
_uReturnValue = g_ARAM_Info.Hex;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -421,7 +421,7 @@ void Write16(const u16 _Value, const u32 _Address)
|
|||||||
// ARAM
|
// ARAM
|
||||||
// DMA back and forth between ARAM and RAM
|
// DMA back and forth between ARAM and RAM
|
||||||
case AR_INFO:
|
case AR_INFO:
|
||||||
PanicAlert("write %x %x", _Value,PowerPC::ppcState.pc);
|
//PanicAlert("write %x %x", _Value,PowerPC::ppcState.pc);
|
||||||
g_ARAM_Info.Hex = _Value;
|
g_ARAM_Info.Hex = _Value;
|
||||||
// __OSInitAudioSystem sets to 0x43 -> expects 16bit adressing and mapping to dsp iram?
|
// __OSInitAudioSystem sets to 0x43 -> expects 16bit adressing and mapping to dsp iram?
|
||||||
// __OSCheckSize sets = 0x20 | 3 (keeps upper bits)
|
// __OSCheckSize sets = 0x20 | 3 (keeps upper bits)
|
||||||
|
Reference in New Issue
Block a user