14 lines
295 B
Bash
Executable File
14 lines
295 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Compile simulation and dump with timing for waveform analysis
|
|
verilator --binary overture.sv overture_tb.sv --top overture_tb --trace-vcd --timing
|
|
|
|
# Run compiled simulation
|
|
./obj_dir/Voverture_tb
|
|
|
|
# Close old session
|
|
pkill gtkwave
|
|
|
|
# Launch new session
|
|
gtkwave overture_dump.vcd &
|