blob: 39db46a30e83e416fa0590b84baa9e46974de9ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
GHDL_FLAGS=--ieee=synopsys
analyze definitions.vhdl
analyze alu.vhdl
analyze basicblocks.vhdl
analyze tb-alu.vhdl
elab_simulate tb_alu --stop-time=50ns
clean
echo "Test successful"
|