| 43 | } |
| 44 | |
| 45 | static void M79Power(void) { |
| 46 | preg = ~0; |
| 47 | Sync(); |
| 48 | SetWriteHandler(0x4100, 0x5FFF, M79Write); |
| 49 | SetWriteHandler(0x8000, 0xFFFF, M79Write); |
| 50 | SetReadHandler(0x8000, 0xFFFF, CartBR); |
| 51 | } |
| 52 | |
| 53 | static void StateRestore(int version) { |
| 54 | Sync(); |
nothing calls this directly
no test coverage detected