| 90 | } |
| 91 | |
| 92 | static void M253Power(void) { |
| 93 | vlock = 0; |
| 94 | Sync(); |
| 95 | SetReadHandler(0x6000, 0x7FFF, CartBR); |
| 96 | SetWriteHandler(0x6000, 0x7FFF, CartBW); |
| 97 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 98 | SetWriteHandler(0x8000, 0xFFFF, M253Write); |
| 99 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 100 | } |
| 101 | |
| 102 | static void M253Close(void) { |
| 103 | if (WRAM) |
nothing calls this directly
no test coverage detected