blob: e241853f34a45e4f9111f3bfa5583f0f035bfa6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
# gcc -c -fPIC caux.c
# gcc -shared -o caux.so caux.o
export GHDL_STD_FLAGS=--std=08
analyze pkg.vhdl tb.vhdl
# elab_simulate tb
clean
# rm -f caux.o caux.so
echo "Test successful"
|