notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54e514e
)
core, fix sram access in ssf2 mapper
author
kub
<derkub@gmail.com>
Tue, 21 Sep 2021 20:23:01 +0000
(22:23 +0200)
committer
kub
<derkub@gmail.com>
Tue, 21 Sep 2021 20:23:01 +0000
(22:23 +0200)
credits go to madmonkey1907 for finding this
pico/carthw/carthw.c
patch
|
blob
|
blame
|
history
diff --git
a/pico/carthw/carthw.c
b/pico/carthw/carthw.c
index
0cadacd
..
c6d8993
100644
(file)
--- a/
pico/carthw/carthw.c
+++ b/
pico/carthw/carthw.c
@@
-35,7
+35,7
@@
void carthw_ssf2_write8(u32 a, u32 d)
{
u32 target, base;
- if ((a & ~0x0e) != 0xa130f1) {
+ if ((a & ~0x0e) != 0xa130f1
|| a == 0xa130f1
) {
PicoWrite8_io(a, d);
return;
}