mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-05 11:06:28 +00:00
14 lines
332 B
Makefile
14 lines
332 B
Makefile
|
|
check:
|
|
verilator --top-module frame_buffer_top --lint-only *.v
|
|
iverilog -tnull *.v
|
|
|
|
deps.dot:
|
|
grep \`include *.v | sed "s/:/ /g" | awk '{ print "\"" $1 "\" -> " $3 ";" }'
|
|
|
|
%.bin: %.v
|
|
~/yosys/yosys -p "synth_ice40 -blif $*.blif" $*.v
|
|
arachne-pnr -d 1k -p icestick.pcf $*.blif -o $*.asc
|
|
icepack $*.asc $*.bin
|
|
#iceprog $*.bin
|
|
|