| 46 | } |
| 47 | |
| 48 | static void M62Power(void) { |
| 49 | bank = mode = 0; |
| 50 | Sync(); |
| 51 | SetWriteHandler(0x8000, 0xFFFF, M62Write); |
| 52 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 53 | } |
| 54 | |
| 55 | static void M62Reset(void) { |
| 56 | bank = mode = 0; |
nothing calls this directly
no test coverage detected