| 75 | } |
| 76 | |
| 77 | static void LH53Power(void) { |
| 78 | Sync(); |
| 79 | SetReadHandler(0x6000, 0xFFFF, CartBR); |
| 80 | SetWriteHandler(0xB800, 0xD7FF, LH53RamWrite); |
| 81 | SetWriteHandler(0xE000, 0xEFFF, LH53IRQaWrite); |
| 82 | SetWriteHandler(0xF000, 0xFFFF, LH53Write); |
| 83 | FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM); |
| 84 | } |
| 85 | |
| 86 | static void LH53Close(void) { |
| 87 | if (WRAM) |
nothing calls this directly
no test coverage detected