16 lines
277 B
Plaintext
16 lines
277 B
Plaintext
|
# Change to path to the benchmark to simulate
|
||
|
set bench_path ../Benchmarks/test04_LdurStur.arm
|
||
|
|
||
|
vlib work
|
||
|
|
||
|
onerror {exit}
|
||
|
|
||
|
vlog ../../../src/hdl/*.sv +define+BENCHMARK="${bench_path}"
|
||
|
|
||
|
vsim -voptargs="+acc" -t 1ns -lib work CPU_pipelined_testbench
|
||
|
|
||
|
log -r /*
|
||
|
|
||
|
run -all
|
||
|
|
||
|
quit -f
|