Bez popisu

Oliver Jaison bf1ee8334a Merge remote-tracking branch 'origin/master' into Oliver_FPA před 4 roky
fpa e8a7ddfb11 new modules and vectors před 4 roky
scripts 5e51303270 Debugging Test Vectors před 4 roky
simulation 64bf0ade21 Script for starting tb před 4 roky
src bf1ee8334a Merge remote-tracking branch 'origin/master' into Oliver_FPA před 4 roky
.gitignore 1f845bdd3b Updated project sturcture před 5 roky
Makefile 64bf0ade21 Script for starting tb před 4 roky
altera_devel.qpf 06cb4a2a5d Initial před 5 roky
altera_devel.qsf 64bf0ade21 Script for starting tb před 4 roky
readme.md 1f845bdd3b Updated project sturcture před 5 roky

readme.md

Altera Development Repo

Setup

Just run analysis

make analysis

if not working, specify Quartus installation directory with QUARTUS_ROOT parameter

Start modelsim GUI

make modelsim

Running testbench

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