blob: c16175e4ce5e731eea54884ebce24d64ffdf1f90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh
. ../../testenv.sh
#! /bin/sh
. ../../testenv.sh
analyze and3.vhdl and6.vhdl tb_and6.vhdl
elab_simulate tb_and6
clean
synth and3.vhdl and6.vhdl -e and6 > syn_and6.vhdl
analyze syn_and6.vhdl tb_and6.vhdl
elab_simulate tb_and6
clean
echo "Test successful"
|