git-svn-id: http://moon:8086/svn/vhdl/trunk@1435 cc03376c-175c-47c8-b038-4cd826a8556b
11 lines
242 B
Bash
11 lines
242 B
Bash
#!/bin/sh
|
|
|
|
std_opt="--workdir=work"
|
|
srcdir="./src"
|
|
|
|
mkdir -p work
|
|
ghdl --remove $std_opt
|
|
ghdl -i $std_opt $srcdir/*.vhdl
|
|
ghdl -m $std_opt dlx_test_behaviour
|
|
ghdl -r $std_opt dlx_test_behaviour --vcd=dlx_test_behaviour.vcd --assert-level=note
|