| 67 | } |
| 68 | |
| 69 | static void M32Power(void) { |
| 70 | Sync(); |
| 71 | SetReadHandler(0x6000,0x7fff,CartBR); |
| 72 | SetWriteHandler(0x6000,0x7fff,CartBW); |
| 73 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 74 | SetWriteHandler(0x8000, 0x8FFF, M32Write0); |
| 75 | SetWriteHandler(0x9000, 0x9FFF, M32Write1); |
| 76 | SetWriteHandler(0xA000, 0xAFFF, M32Write2); |
| 77 | SetWriteHandler(0xB000, 0xBFFF, M32Write3); |
| 78 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 79 | } |
| 80 | |
| 81 | static void M32Close(void) |
| 82 | { |
nothing calls this directly
no test coverage detected