blob: 7732bdc6f86b1e62a2a50b7221278c3d73a5931c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze frequency.vhdl
analyze tb_freq.vhdl
elab_simulate tb_freq --stop-time=1us
clean
echo "Test successful"
|