blob: b977449da3bbe0e055f8f7c724bc12f48259e563 [file] [log] [blame]
PROJ=blinky
all: ${PROJ}.bit
%.json: %.v
yosys -p "synth_ecp5 -noccu2 -nobram -nomux -json $@" $<
%_out.config: %.json
nextpnr-ecp5 --json $< --basecfg ../../misc/basecfgs/empty_lfe5um5g-85f.config --textcfg $@ --um5g-85k --package CABGA381 --lpf ecp5evn.lpf
%.bit: %_out.config
ecppack --svf ${PROJ}.svf $< $@
${PROJ}.svf : ${PROJ}.bit
prog: ${PROJ}.svf
openocd -f ../../misc/openocd/ecp5-evn.cfg -c "transport select jtag; init; svf $<; exit"
clean:
rm -f *.svf *.bit *.config *.json
.PHONY: prog clean