blob: cc40f65f9e903ec94aaab677b09fe49fe9e6b952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
topdir=../..
. $topdir/testenv.sh
run_yosys -q -p "ghdl vector.vhdl -e vector; opt; dump -o vector.il"
grep -q 1111000000000000000000000000000000000000000000000000000000010000 vector.il || exit 1
clean
rm vector.il
echo OK
|