blob: 2bc5d99594b04db28009efe96e64c33327b7338d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
rot.bin: rot.v rot.pcf
yosys -q -p "synth_ice40 -blif rot.blif" rot.v
arachne-pnr -p rot.pcf rot.blif -o rot.txt
icebox_explain rot.txt > rot.ex
icepack rot.txt rot.bin
load: rot.bin
./ice4pi_prog rot.bin
# iceprog rot.bin
clean:
rm -f rot.blif rot.txt rot.ex rot.bin
|