- added ac97 Controller

git-svn-id: http://moon:8086/svn/vhdl/trunk@1411 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2021-03-21 09:07:16 +00:00
parent c24915c0ba
commit 67d79572d7
58 changed files with 11651 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
# ------------------------------------------------
unit_to_run="tb_pcm_vhd"
# ------------------------------------------------
std_opt="--workdir=work --std=93c --ieee=synopsys"
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
# ------------------------------------------------