victor9k: Set floppy RPM after track step. Boots to CP/M now. [Curt Coder]

This commit is contained in:
Curt Coder 2016-08-12 15:15:07 +03:00
parent 666a03377d
commit 20127228a0
2 changed files with 3 additions and 1 deletions

View File

@ -387,7 +387,7 @@ const int victor9k_format::speed_zone[2][80] =
const int victor9k_format::rpm[9] =
{
252, 267, 283, 300, 320, 342, 368, 401, 417
252, 267, 283, 300, 321, 342, 368, 401, 417
};
bool victor9k_format::save(io_generic *io, floppy_image *image)

View File

@ -565,6 +565,8 @@ void victor_9000_fdc_t::update_stepper_motor(floppy_image_device *floppy, int st
floppy->stp_w(1);
floppy->stp_w(0);
}
floppy->set_rpm(victor9k_format::get_rpm(m_side, floppy->get_cyl()));
}
void victor_9000_fdc_t::update_spindle_motor(floppy_image_device *floppy, emu_timer *t_tach, bool start, bool stop, bool sel, UINT8 &da)