3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-13 04:28:18 +00:00
This commit is contained in:
Miodrag Milanovic 2022-03-07 16:32:32 +01:00
parent 1b1ecd4ab0
commit ede348cdc2

View file

@ -1238,7 +1238,7 @@ struct SimWorker : SimShared
curr_cycle = -1; // force detect change curr_cycle = -1; // force detect change
if (curr_cycle != prev_cycle) { 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(clock, State::S1);
set_inports(clockn, State::S0); set_inports(clockn, State::S0);
update(); update();
@ -1282,6 +1282,7 @@ struct SimWorker : SimShared
break; break;
} }
} }
register_output_step(10*cycle);
write_output_files(); write_output_files();
} }
}; };