| 3985 | } |
| 3986 | |
| 3987 | void event_DISK_handler(uae_u32 data) |
| 3988 | { |
| 3989 | int flag = data & 255; |
| 3990 | int hpos = current_hpos(); |
| 3991 | |
| 3992 | #if DISK_DEBUG_X > 0 |
| 3993 | write_log("disk event %02x %d %d\n", flag, hpos, disk_hpos >> 8); |
| 3994 | #endif |
| 3995 | DISK_update(hpos); |
| 3996 | DISK_update_predict(); |
| 3997 | } |
| 3998 | |
| 3999 | static void loaddskbytr(int bits, int speed) |
| 4000 | { |
nothing calls this directly
no test coverage detected