blob: cd935e4351d57d2a7905b4d1c488ebbe525d1286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /bin/sh
. ../../testenv.sh
analyze repro2.vhdl
elab_simulate repro2
analyze e.vhdl
elab_simulate e
clean
#export GHDL_STD_FLAGS=--std=08
analyze sim_types_pkg.vhd dma_controller_tb.vhd
elab_simulate dma_controller_tb
clean
echo "Test successful"
|