Fixed a hard-coding of the hard disk bus speed that should not have been there.

This commit is contained in:
OBattler
2020-01-14 19:44:10 +01:00
parent c09acf597d
commit c3a440e19b

View File

@@ -249,8 +249,6 @@ ide_get_period(ide_t *ide, int size)
break;
}
period = (10.0 / 3.0);
period = (1.0 / period); /* get us for 1 byte */
return period * ((double) size); /* multiply by bytes to get period for the entire transfer */
}