| 134 | } |
| 135 | |
| 136 | static void M80Power(void) { |
| 137 | wram_enable = 0xFF; |
| 138 | Sync(); |
| 139 | SetReadHandler(0x7F00, 0x7FFF, M80RamRead); |
| 140 | SetWriteHandler(0x7F00, 0x7FFF, M80RamWrite); |
| 141 | SetWriteHandler(0x7EF0, 0x7EFF, M80Write); |
| 142 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 143 | } |
| 144 | |
| 145 | static void M207Power(void) { |
| 146 | mcache[0] = mcache[1] = mcache[2] = mcache[3] = 0; |
nothing calls this directly
no test coverage detected