> build_flow_VFlow

ysyx_22040000 李心杨
 Linux calcite 6.6.19 #1-NixOS SMP PREEMPT_DYNAMIC Fri Mar  1 12:35:11 UTC 2024 x86_64 GNU/Linux
  11:56:57  up   1:33,  2 users,  load average: 0.99, 0.78, 0.86
This commit is contained in:
tracer-ysyx 2024-03-13 11:56:57 +08:00 committed by xinyangli
parent 3e3ad2ce06
commit 3d298ca442

View file

@ -19,12 +19,14 @@ int main(int argc, char **argv, char **env) {
top->trace(m_trace, 5); top->trace(m_trace, 5);
m_trace->open("waveform.vcd"); m_trace->open("waveform.vcd");
#endif #endif
top->reset = 1; for (sim_time = 0; sim_time < 10; sim_time++) {
top->clock = 1; top->eval();
top->eval(); top->clock = !top->clock;
top->clock = 0; top->reset = 1;
top->reset = 0; #ifdef VERILATOR_TRACE
top->eval(); m_trace->dump(sim_time);
#endif
}
for (sim_time = 0; sim_time < MAX_SIM_TIME; sim_time++) { for (sim_time = 0; sim_time < MAX_SIM_TIME; sim_time++) {
top->eval(); top->eval();
top->clock = !top->clock; top->clock = !top->clock;