| 50 | } |
| 51 | |
| 52 | static void M232Power(void) { |
| 53 | bank = preg = 0; |
| 54 | Sync(); |
| 55 | SetWriteHandler(0x8000, 0xBFFF, M232WriteBank); |
| 56 | SetWriteHandler(0xC000, 0xFFFF, M232WritePreg); |
| 57 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 58 | } |
| 59 | |
| 60 | static void StateRestore(int version) { |
| 61 | Sync(); |
nothing calls this directly
no test coverage detected