blob: 5c3a46d9a676fd61e1497fe1b52b675563284e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
FILES="
burst_ctrl.vhd
avm_master.vhd
avm_pause.vhd
avm_master_general.vhd
avm_arbit.vhd
avm_memory.vhd
tb_avm_arbit.vhd
"
analyze $FILES
elab_simulate_failure tb_avm_arbit --assert-level=error --stop-time=50us
clean
echo "Test successful"
|