MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / ide_generic_lput

Function ide_generic_lput

src/idecontrollers.cpp:2244–2251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2242 ide_write_word(ide, addr, b);
2243}
2244static void REGPARAM2 ide_generic_lput (uaecptr addr, uae_u32 b)
2245{
2246 struct ide_board *ide = getideboard(addr);
2247 if (ide) {
2248 ide_write_word(ide, addr, b >> 16);
2249 ide_write_word(ide, addr + 2, b);
2250 }
2251}
2252static uae_u32 REGPARAM2 ide_generic_bget (uaecptr addr)
2253{
2254 struct ide_board *ide = getideboard(addr);

Callers

nothing calls this directly

Calls 2

getideboardFunction · 0.85
ide_write_wordFunction · 0.85

Tested by

no test coverage detected