#!/bin/sh # ------------------------------------------------ unit_to_run="tb_eval_fixed_ja" # ------------------------------------------------ std_opt="--workdir=work --std=93c --ieee=standard" srcdir=./src # ------------------------------------------------ ghdl --remove $std_opt ghdl -i $std_opt $srcdir/*.vhd ghdl -a $std_opt $srcdir/*.vhd ghdl -m $std_opt $unit_to_run ghdl -r $unit_to_run --vcd=$unit_to_run.vcd --assert-level=error # ------------------------------------------------