blob: c10e0195a0bfba297c7a9dba72e6b18707a6a816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
. ../../testenv.sh
analyze -fpsl recv.vhdl tb_recv.vhdl
elab_simulate tb_recv
clean
synth -fpsl recv.vhdl -e recv > syn_recv.vhdl
analyze syn_recv.vhdl tb_recv.vhdl
elab_simulate tb_recv
clean
echo "Test successful"
|