blob: 48152efe20e2a95e0f8a97dc1e6cf74c9694fd2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
topdir=..
. $topdir/testenv.sh
src=../../icezum
synth "$src/led_on/led_on.vhdl -e led_on"
synth "$src/blink/blink.vhdl -e blink"
synth "$src/pushbutton/pushbutton.vhdl -e pushbutton"
synth "$src/pushbutton_and/pushbutton_and.vhdl -e pushbutton_and"
clean
|