blob: 4b4aca6236e711b363b886b1c44180b1e1cc515b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze tb_pkg.vhdl
analyze numeric_system_pkg.vhdl
analyze reset_synchronizer.vhdl
analyze quire_accumulator.vhdl
analyze quire_accumulator_tb.vhdl
elab quire_accumulator_tb
simulate quire_accumulator_tb
# if ghdl_has_feature quire_accumulator_tb ghw; then
# simulate quire_accumulator_tb --wave=w.ghw
# fi
rm -f w.ghw
clean
echo "Test successful"
|