git-svn-id: http://moon:8086/svn/vhdl/trunk@1411 cc03376c-175c-47c8-b038-4cd826a8556b
18 lines
494 B
Bash
18 lines
494 B
Bash
#!/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
|
|
|
|
# ------------------------------------------------
|