Aucune description

Min 00f881c935 IEE floating point issues WIP il y a 4 ans
scripts 32ceb32c0f Working FPU benchmark il y a 4 ans
simulation ff722bedc5 FPU32 test vecotrs il y a 4 ans
src 00f881c935 IEE floating point issues WIP il y a 4 ans
.gitignore 1f845bdd3b Updated project sturcture il y a 5 ans
Makefile c9d18bd0bd Updated simulation commands il y a 5 ans
altera_devel.qpf 06cb4a2a5d Initial il y a 5 ans
altera_devel.qsf ff722bedc5 FPU32 test vecotrs il y a 4 ans
readme.md 1f845bdd3b Updated project sturcture il y a 5 ans

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