File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ cp $FLOW_HOME/results/asap7/mock-array_Element/base/6_final.v $POST_DIR/MockArra
1818
1919# Run simulation and have Verilator write the output files to the objects area
2020verilator -Wall --cc \
21+ --timescale 1ps/1ps \
2122 -Wno-DECLFILENAME \
2223 -Wno-UNUSEDSIGNAL \
2324 -Wno-PINMISSING \
@@ -35,7 +36,7 @@ verilator -Wall --cc \
3536 $FLOW_HOME /designs/src/mock-array/simulate.cpp
3637
3738# Link the generated object files into the VMockArray executable
38- make -j -C $OBJ_DIR -f VMockArray.mk
39+ make -j16 -C $OBJ_DIR -f VMockArray.mk
3940
4041# Run the simulation
4142$OBJ_DIR /VMockArray
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ int main(int argc, char** argv) {
8080
8181 for (int k = 0 ; k < 2 ; k++) {
8282 top->eval ();
83- vcd->dump (tick++);
83+ vcd->dump (tick++ * 125 );
8484 top->clock = !top->clock ;
8585 }
8686 }
You can’t perform that action at this time.
0 commit comments