1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Switch RDY type.

This commit is contained in:
Thomas Harte 2021-10-06 04:41:09 -07:00
parent 2253ff656a
commit e961d0b4a3

View File

@ -1019,7 +1019,7 @@ Chipset::DiskController::DiskController(Cycles clock_rate) :
// Add four drives.
for(int c = 0; c < 4; c++) {
emplace_drive(clock_rate.as<int>(), 300, 2, Storage::Disk::Drive::ReadyType::ShugartRDY);
emplace_drive(clock_rate.as<int>(), 300, 2, Storage::Disk::Drive::ReadyType::IBMRDY);
}
}