blob: 548d7d76b4b5924461adb36bf904bb64d3e9b97c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
gcc -c ghdlserver.c
ghdl -a Utility_Package.vhdl &&
ghdl -a Vhpi_Package.vhdl &&
ghdl -a inverter.vhdl &&
ghdl -a inverter_tb.vhdl &&
ghdl -e -Wl,ghdlserver.o inverter_tb &&
./inverter_tb
|