18 lines
566 B
Plaintext
18 lines
566 B
Plaintext
|
onerror {exit -code 1}
|
||
|
vlib work
|
||
|
vlog -work work decoder.vo
|
||
|
vlog -work work Waveform.vwf.vt
|
||
|
vsim -novopt -c -t 1ps -L fiftyfivenm_ver -L altera_ver -L altera_mf_ver -L 220model_ver -L sgate_ver -L altera_lnsim_ver work.decoder_vlg_vec_tst
|
||
|
vcd file -direction decoder.msim.vcd
|
||
|
vcd add -internal decoder_vlg_vec_tst/*
|
||
|
vcd add -internal decoder_vlg_vec_tst/i1/*
|
||
|
proc simTimestamp {} {
|
||
|
echo "Simulation time: $::now ps"
|
||
|
if { [string equal running [runStatus]] } {
|
||
|
after 2500 simTimestamp
|
||
|
}
|
||
|
}
|
||
|
after 2500 simTimestamp
|
||
|
run -all
|
||
|
quit -f
|