1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 06:29:33 +00:00

Fixed stepping out.

This commit is contained in:
Thomas Harte 2016-09-24 22:48:45 -04:00
parent 9e1d4c8b01
commit 0918751802

View File

@ -138,7 +138,7 @@ void WD1770::process_index_hole()
posit_event(Event::IndexHole); posit_event(Event::IndexHole);
// motor power-down // 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; track_ = 0;
goto verify; goto verify;
} }
step(step_direction_); step(step_direction_ ? 1 : -1);
int time_to_wait; int time_to_wait;
switch(command_ & 3) switch(command_ & 3)
{ {