Bug fix for mapper 16 submapper 4, allow writes to address range 6000 - 600D. For issue #458.
This commit is contained in:
parent
2dde684af4
commit
6d942379d6
src/boards
|
@ -303,7 +303,7 @@ static void BandaiPower(void) {
|
|||
Sync();
|
||||
SetReadHandler(0x6000, 0x7FFF, BandaiRead);
|
||||
SetReadHandler(0x8000, 0xFFFF, CartBR);
|
||||
SetWriteHandler(0x8000, 0xFFFF, BandaiWrite);
|
||||
SetWriteHandler(0x6000, 0xFFFF, BandaiWrite);
|
||||
}
|
||||
|
||||
static void StateRestore(int version) {
|
||||
|
|
Loading…
Reference in New Issue