| 64 | } |
| 65 | |
| 66 | static void M82Power(void) { |
| 67 | Sync(); |
| 68 | SetReadHandler(0x6000, 0xffff, CartBR); |
| 69 | SetWriteHandler(0x6000, 0x7fff, CartBW); |
| 70 | SetWriteHandler(0x7ef0, 0x7efc, M82Write); // external WRAM might end at $73FF |
| 71 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 72 | } |
| 73 | |
| 74 | static void M82Close(void) { |
| 75 | if (WRAM) |
nothing calls this directly
no test coverage detected