From 7264fbb3d2c64cb181e038498d03845d67169933 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 14 Aug 2017 09:58:55 -0400 Subject: [PATCH] read_id now clears status. I probably need to find a way to generalise this. --- Components/8272/i8272.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Components/8272/i8272.cpp b/Components/8272/i8272.cpp index ef6a318ce..322664324 100644 --- a/Components/8272/i8272.cpp +++ b/Components/8272/i8272.cpp @@ -513,6 +513,7 @@ void i8272::posit_event(int event_type) { printf("Read ID\n"); SET_DRIVE_HEAD_MFM(); LOAD_HEAD(); + CLEAR_STATUS(); // Sets a maximum index hole limit of 2 then waits either until it finds a header mark or sees too many index holes. // If a header mark is found, reads in the following bytes that produce a header. Otherwise branches to data not found. @@ -650,8 +651,6 @@ void i8272::posit_event(int event_type) { // occurs in ::run_for; this merely establishes that seeking should be ongoing. recalibrate: seek: - printf((command_.size() > 2) ? "Seek\n" : "Recalibrate\n"); - { int drive = command_[1]&3; @@ -673,9 +672,11 @@ void i8272::posit_event(int event_type) { // up in run_for understands to mean 'keep going until track 0 is active'). if(command_.size() > 2) { drives_[drive].target_head_position = command_[2]; + printf("Seek to %02x\n", command_[2]); } else { drives_[drive].target_head_position = -1; drives_[drive].head_position = 0; + printf("Recalibrate\n"); } // Check whether any steps are even needed; if not then mark as completed already.