aboutsummaryrefslogtreecommitdiff
path: root/ARM.h
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2017-02-17 05:33:37 +0100
committerStapleButter <thetotalworm@gmail.com>2017-02-17 05:33:37 +0100
commitcca0a71d8178284629d8a9f31fbe4c2538650c9e (patch)
tree6dc318c86b95af8160e6749e592350e790b16c6c /ARM.h
parentabd2cb444be51140bbf1482ee0c15103687ede23 (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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ARM.h b/ARM.h
index bf354a7..79c2bce 100644
--- a/ARM.h
+++ b/ARM.h
@@ -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)