blob: ed620bfdd1d98b092b764a1517245ef244ac28b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze wishbone_pkg-2008.vhd
analyze wb_demux.vhd
analyze wb_demux_tb.vhd
elab wb_demux_tb
if ghdl_has_feature wb_demux_tb ghw; then
simulate wb_demux_tb --wave=w.ghw
fi
rm -f w.ghw
clean
echo "Test successful"
|