1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 23:37:13 +00:00

Fixed missed change from sim_is_active to sim_activate_time.

This commit is contained in:
Mark Pizzolato 2013-01-11 16:10:41 -08:00
parent 744f65a36c
commit 6a08c3c283
2 changed files with 2 additions and 2 deletions

View File

@ -482,7 +482,7 @@ int32 clk_cosched (int32 wait)
{
int32 t;
t = sim_is_active (&clk_unit);
t = sim_activate_time (&clk_unit);
return (t? t - 1: wait);
}

View File

@ -157,7 +157,7 @@ int32 clk_cosched (int32 wait)
{
int32 t;
t = sim_is_active (&clk_unit);
t = sim_activate_time (&clk_unit);
return (t? t - 1: wait);
}