Нема описа

Oliver Jaison 66394f0166 Merge branch 'master' of https://gogs.infcof.com/4ycp/altera_devel into Oliver_FPA пре 4 година
fpa e8a7ddfb11 new modules and vectors пре 4 година
scripts 4b437b8178 working add and multiply пре 4 година
simulation 66394f0166 Merge branch 'master' of https://gogs.infcof.com/4ycp/altera_devel into Oliver_FPA пре 4 година
src 66394f0166 Merge branch 'master' of https://gogs.infcof.com/4ycp/altera_devel into Oliver_FPA пре 4 година
.gitignore 1f845bdd3b Updated project sturcture пре 5 година
Makefile 64bf0ade21 Script for starting tb пре 4 година
altera_devel.qpf 06cb4a2a5d Initial пре 5 година
altera_devel.qsf 64bf0ade21 Script for starting tb пре 4 година
readme.md 1f845bdd3b Updated project sturcture пре 5 година

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