| 1168 | } |
| 1169 | |
| 1170 | static 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 | |
| 1181 | static uae_u32 ide_read_word(struct ide_board *board, uaecptr addr) |
| 1182 | { |
no test coverage detected