| 44 | } |
| 45 | |
| 46 | static void M177Power(void) { |
| 47 | reg = 0; |
| 48 | Sync(); |
| 49 | SetReadHandler(0x6000, 0x7fff, CartBR); |
| 50 | SetWriteHandler(0x6000, 0x7fff, CartBW); |
| 51 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 52 | SetWriteHandler(0x8000, 0xFFFF, M177Write); |
| 53 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 54 | } |
| 55 | |
| 56 | static void M177Close(void) { |
| 57 | if (WRAM) |
nothing calls this directly
no test coverage detected