aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/func03/testsuite.sh
blob: 74351ab7ecc39eed83d8eddd65a046c1d6cdab53 (plain)
1
2
3
4
5
6
7
8
9
#! /bin/sh

. ../../testenv.sh

for t in func01; do
    synth_tb $t
done

echo "Test successful"
an>; entity issue1 is port( a : in std_logic_vector(7 downto 0); b : out std_logic_vector(2 downto 0) ); end issue1; architecture behavior of issue1 is begin b <= std_logic_vector(unsigned(a) + 1); end behavior;