설명 없음

Oliver Jaison 10a5f741e8 testbench vectors 4 년 전
fpa e8a7ddfb11 new modules and vectors 4 년 전
scripts e8a7ddfb11 new modules and vectors 4 년 전
simulation ff722bedc5 FPU32 test vecotrs 4 년 전
src 10a5f741e8 testbench vectors 4 년 전
.gitignore 1f845bdd3b Updated project sturcture 5 년 전
Makefile c9d18bd0bd Updated simulation commands 5 년 전
altera_devel.qpf 06cb4a2a5d Initial 5 년 전
altera_devel.qsf ff722bedc5 FPU32 test vecotrs 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