From ede348cdc285f4b4f1c53942d515a7082e53e37a Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Mon, 7 Mar 2022 16:32:32 +0100 Subject: [PATCH] cleanup --- passes/sat/sim.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/passes/sat/sim.cc b/passes/sat/sim.cc index 9771e83f3..d7f4de507 100644 --- a/passes/sat/sim.cc +++ b/passes/sat/sim.cc @@ -1238,7 +1238,7 @@ struct SimWorker : SimShared curr_cycle = -1; // force detect change if (curr_cycle != prev_cycle) { - log("Simulating cycle %d %d.\n", cycle, cycle % 1); + log("Simulating cycle %d.\n", cycle); set_inports(clock, State::S1); set_inports(clockn, State::S0); update(); @@ -1282,6 +1282,7 @@ struct SimWorker : SimShared break; } } + register_output_step(10*cycle); write_output_files(); } }; -- 2.30.2