| 48 | } |
| 49 | |
| 50 | static void M246Power(void) { |
| 51 | regs[0] = regs[1] = regs[2] = regs[3] = ~0; |
| 52 | Sync(); |
| 53 | SetWriteHandler(0x6000, 0x67FF, M246Write); |
| 54 | SetReadHandler(0x6800, 0x6FFF, CartBR); |
| 55 | SetWriteHandler(0x6800, 0x6FFF, CartBW); |
| 56 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 57 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 58 | } |
| 59 | |
| 60 | static void M246Close(void) |
| 61 | { |
nothing calls this directly
no test coverage detected