| 45 | } |
| 46 | |
| 47 | static void M99Power(void) { |
| 48 | latch = 0; |
| 49 | Sync(); |
| 50 | old4016 = GetWriteHandler(0x4016); |
| 51 | SetWriteHandler(0x4016, 0x4016, M99Write); |
| 52 | SetReadHandler(0x6000, 0xFFFF, CartBR); |
| 53 | SetWriteHandler(0x6000, 0x7FFF, CartBW); |
| 54 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 55 | } |
| 56 | |
| 57 | static void M99Close(void) |
| 58 | { |
nothing calls this directly
no test coverage detected