We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1823ee5 commit 6ea8c75Copy full SHA for 6ea8c75
test/Makefile
@@ -21,9 +21,12 @@ endif
21
22
default:
23
pip3 install fxpmath
24
- `which iverilog` -o sim_build/rtl/sim.vvp $(IVERILOG_ARGS) -f sim_build/rtl/cmds.f -g2012 $(VERILOG_SOURCES)
25
- MODULE=test TESTCASE= TOPLEVEL=tb TOPLEVEL_LANG=verilog `which vvp` -M `python3 -m site --user-site`/cocotb/libs -m libcocotbvpi_icarus sim_build/rtl/sim.vvp
+ rm -fR sim_build
+ mkdir sim_build
26
+ `which iverilog` -o sim_build/sim.vvp $(IVERILOG_ARGS) -g2012 $(VERILOG_SOURCES)
27
+ MODULE=test TESTCASE= TOPLEVEL=tb TOPLEVEL_LANG=verilog `which vvp` -M `python3 -m site --user-site`/cocotb/libs -m libcocotbvpi_icarus sim_build/sim.vvp
28
29
clean:
30
find . -name __pycache__ -exec rm -fR {} +
31
rm -f results.xml
32
0 commit comments