MCPcopy Create free account
hub / github.com/TASEmulators/fceux / M32Power

Function M32Power

src/boards/32.cpp:69–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69static void M32Power(void) {
70 Sync();
71 SetReadHandler(0x6000,0x7fff,CartBR);
72 SetWriteHandler(0x6000,0x7fff,CartBW);
73 SetReadHandler(0x8000, 0xFFFF, CartBR);
74 SetWriteHandler(0x8000, 0x8FFF, M32Write0);
75 SetWriteHandler(0x9000, 0x9FFF, M32Write1);
76 SetWriteHandler(0xA000, 0xAFFF, M32Write2);
77 SetWriteHandler(0xB000, 0xBFFF, M32Write3);
78 FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM);
79}
80
81static void M32Close(void)
82{

Callers

nothing calls this directly

Calls 4

SetReadHandlerFunction · 0.85
SetWriteHandlerFunction · 0.85
FCEU_CheatAddRAMFunction · 0.85
SyncFunction · 0.70

Tested by

no test coverage detected