git-svn-id: http://moon:8086/svn/vhdl/trunk@1419 cc03376c-175c-47c8-b038-4cd826a8556b
11 lines
241 B
Bash
11 lines
241 B
Bash
#!/bin/sh
|
|
|
|
STD_OPT="--workdir=work --ieee=standard --std=93c"
|
|
|
|
ghdl --clean $STD_OPT
|
|
ghdl --xref-html $STD_OPT test.vhdl >./test.htm
|
|
|
|
ghdl -a $STD_OPT test.vhdl
|
|
ghdl -e $STD_OPT test
|
|
ghdl -r $STD_OPT test --vcd=test.vcd --assert-level=note
|
|
|