diff options
author | Martin Stensgård <mastensg@mastensg.net> | 2025-04-27 19:32:13 +0200 |
---|---|---|
committer | Martin Stensgård <mastensg@mastensg.net> | 2025-04-27 19:32:13 +0200 |
commit | e4df12dbe2ffdec4b43911ef895372f8cf97972c (patch) | |
tree | 6d56e364ea71d7d9856a7d54128959f1d19d551e /verilator_example_tracing/Makefile | |
parent | 56afef8ec52a3d3644fc8230e0d92004d3727c4b (diff) |
verilator_example_tracing: dump value change
Diffstat (limited to 'verilator_example_tracing/Makefile')
-rw-r--r-- | verilator_example_tracing/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/verilator_example_tracing/Makefile b/verilator_example_tracing/Makefile new file mode 100644 index 0000000..fc2f775 --- /dev/null +++ b/verilator_example_tracing/Makefile @@ -0,0 +1,13 @@ +all: obj_dir/Vhello + +check: all + obj_dir/Vhello + +clean: + rm -fr obj_dir + +.PHONY: all check clean + +obj_dir/Vhello: hello.v sim_main.cc + verilator --cc --exe --trace --build -j 0 -Wall hello.v sim_main.cc + #verilator --cc --exe --trace --build -j 0 -Wall -O3 --x-assign fast --x-initial fast --noassert hello.v sim_main.cc |