MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / readEXIcmdLong

Function readEXIcmdLong

src/dolphin/src/eth/eth.c:165–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165static void readEXIcmdLong(u8 cmd, void* address, s32 length) {
166 u16 ethcmd;
167
168 ethcmd = cmd << 8;
169 EXISelect(0, 2, 5);
170 EXIImm(0, &ethcmd, sizeof(ethcmd), EXI_WRITE, NULL);
171 EXISync(0);
172 EXIImmEx(0, address, length, EXI_READ);
173 EXIDeselect(0);
174}
175
176static void writeEXIcmdLong(u8 cmd, void* address, s32 length) {
177 BOOL ret;

Callers 1

patchthruFunction · 0.85

Calls 5

EXISelectFunction · 0.85
EXIImmFunction · 0.85
EXISyncFunction · 0.85
EXIImmExFunction · 0.85
EXIDeselectFunction · 0.85

Tested by

no test coverage detected