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

Function ide_read_byte

src/idecontrollers.cpp:1170–1179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1168}
1169
1170static uae_u32 ide_read_byte(struct ide_board *board, uaecptr addr)
1171{
1172 uae_u32 v = ide_read_byte2(board, addr);
1173#if DEBUG_IDE
1174 if ((addr & DEBUG_IDE_MASK) == DEBUG_IDE_MASK_VAL) {
1175 write_log(_T("IDE IO BYTE READ %08x=%02x %08x\n"), addr & board->mask, v & 0xff, M68K_GETPC);
1176 }
1177#endif
1178 return v;
1179}
1180
1181static uae_u32 ide_read_word(struct ide_board *board, uaecptr addr)
1182{

Callers 2

ide_read_wordFunction · 0.85
ide_generic_bgetFunction · 0.85

Calls 2

ide_read_byte2Function · 0.85
write_logFunction · 0.70

Tested by

no test coverage detected