1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Fixed stepping out.

This commit is contained in:
Thomas Harte
2016-09-24 22:48:45 -04:00
parent 9e1d4c8b01
commit 0918751802
+2 -2
View File
@@ -138,7 +138,7 @@ void WD1770::process_index_hole()
posit_event(Event::IndexHole);
// motor power-down
if(index_hole_count_ == 9 && !(status_&Flag::Busy)) status_ &= ~Flag::MotorOn;
// if(index_hole_count_ == 9 && !(status_&Flag::Busy)) status_ &= ~Flag::MotorOn;
}
// +------+----------+-------------------------+
@@ -229,7 +229,7 @@ void WD1770::posit_event(Event new_event_type)
track_ = 0;
goto verify;
}
step(step_direction_);
step(step_direction_ ? 1 : -1);
int time_to_wait;
switch(command_ & 3)
{