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);
}