'Simulation Waveform in Intel Questas_fse/Quartus II doesn't update outputs

I'm attempting to run Quartus II ( Quartus Prime Version 21.1.0 Build 842 10/21/2021 Sj Lite Edition) on linux Pop OS 21.10. I fail to produce result on output from Questas simulation run from the Simulation Waveform Editor.

Project

Settings

  • I have created a new project with these options enter image description here
  • I selected the 5CSEMA5F31C6 board

Files

.bdf file :

enter image description here

.vwf file :

enter image description here

Simulation Setting

Notice the removal of -novopt to supress error message claiming deprecation of the option. Refuse simulation if left into script but is inserted in script by default. This is the step I'm most unsure about.

onerror {exit -code 1}
vlib work
vlog -work work ok.vo
vlog -work work Waveform1.vwf.vt
vsim -c -t 1ps -L cyclonev_ver -L altera_ver -L altera_mf_ver -L 220model_ver -L sgate_ver -L altera_lnsim_ver work.ok_vlg_vec_tst
vcd file -direction ok.msim.vcd
vcd add -internal ok_vlg_vec_tst/*
vcd add -internal ok_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

Step to reproduce

  • press "functional simulation" Run functional simulation from Simulation Waveform Editor
  • wait for simulation to finish
  • wait for read only result window to appear

Results

expected

enter image description here

actual

enter image description here

conclusion

I failed to produce output on C.

Thank you very much for your help.



Solution 1:[1]

In the simulation settings, replace the -novopt option with -voptargs="+acc".

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 richardec