diff options
author | StapleButter <thetotalworm@gmail.com> | 2017-02-17 05:33:37 +0100 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2017-02-17 05:33:37 +0100 |
commit | cca0a71d8178284629d8a9f31fbe4c2538650c9e (patch) | |
tree | 6dc318c86b95af8160e6749e592350e790b16c6c /ARM.h | |
parent | abd2cb444be51140bbf1482ee0c15103687ede23 (diff) |
emulate DMA timings.
keeps games from overflowing the GXFIFO... when they aren't fucking dumb.
Diffstat (limited to 'ARM.h')
-rw-r--r-- | ARM.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -125,7 +125,7 @@ public: else val = NDS::ARM7Read8(addr); - Cycles += Waitstates[3][(addr>>24)&0xF]; + Cycles += Waitstates[2][(addr>>24)&0xF]; return val; } @@ -171,7 +171,7 @@ public: else NDS::ARM7Write8(addr, val); - Cycles += Waitstates[3][(addr>>24)&0xF]; + Cycles += Waitstates[2][(addr>>24)&0xF]; } void DataWrite16(u32 addr, u16 val, u32 forceuser=0) |