|
|
%!s(int64=4) %!d(string=hai) anos | |
|---|---|---|
| scripts | %!s(int64=4) %!d(string=hai) anos | |
| simulation | %!s(int64=4) %!d(string=hai) anos | |
| src | %!s(int64=4) %!d(string=hai) anos | |
| .gitignore | %!s(int64=5) %!d(string=hai) anos | |
| Makefile | %!s(int64=5) %!d(string=hai) anos | |
| altera_devel.qpf | %!s(int64=5) %!d(string=hai) anos | |
| altera_devel.qsf | %!s(int64=4) %!d(string=hai) anos | |
| readme.md | %!s(int64=5) %!d(string=hai) anos |
Just run analysis
make analysis
if not working, specify Quartus installation directory with QUARTUS_ROOT parameter
Start modelsim GUI
make modelsim
This will run test testbench in console without opening modelsim GUI
make tb_file=${file} tb_mod=${module} testbench
# Example
make tb_file=./src/root.sv tb_mod=root_tb testbench
Running testbench with defined simulation tcl script. Scripts has be located in simulation/modelsim/sim_*.do
# With GUI
make do_file=${file} sim_gui
# Without GUI
make do_file=${file} sim
# Example
make do_file=sim_root_tb.do sim_gui