| 51 | } |
| 52 | |
| 53 | static void LE05Power(void) { |
| 54 | Sync(); |
| 55 | SetReadHandler(0x6000, 0xFFFF, CartBR); |
| 56 | SetWriteHandler(0x8000, 0xFFFF, LE05Write); |
| 57 | } |
| 58 | |
| 59 | void LE05_Init(CartInfo *info) { |
| 60 | info->Power = LE05Power; |
nothing calls this directly
no test coverage detected