1
0
mirror of https://github.com/simh/simh.git synced 2026-05-04 15:05:39 +00:00

BESM6: Reverted IO scheduling to model time; the time unit is 100 ns.

This commit is contained in:
Leo Broukhis
2014-12-31 17:26:34 -08:00
parent db44518808
commit 3ddb9e9929
7 changed files with 18 additions and 12 deletions

View File

@@ -1434,7 +1434,11 @@ void cpu_one_inst ()
/* Если периферия простаивает, освобождаем процессор
* до следующего тика таймера. */
sim_idle (0, TRUE);
if (vt_is_idle() &&
printer_is_idle() && fs_is_idle()) {
check_initial_setup ();
sim_idle (0, TRUE);
}
}
}