mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-08-01 10:39:53 -06:00
fix double data aborts with strd
This commit is contained in:
@ -1014,11 +1014,11 @@ bool ARMv5::DataWrite32(u32 addr, u32 val)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ARMv5::DataWrite32S(u32 addr, u32 val)
|
||||
bool ARMv5::DataWrite32S(u32 addr, u32 val, bool dataabort)
|
||||
{
|
||||
if (!(PU_Map[addr>>12] & 0x02))
|
||||
{
|
||||
DataAbort();
|
||||
if (!dataabort) DataAbort();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user