FreeCalypso > hg > fc-sim-sniff
view fpga/sniffer-basic/Makefile @ 9:10c779b8753e
FPGA Makefile: capture yosys stdout
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 21 Aug 2023 01:00:16 +0000 |
parents | 7cab8e0dd937 |
children | d29dcfa78124 |
line wrap: on
line source
VSRC= clk_edge.v reset_detect.v sniff_rx.v sync_inputs.v top.v uart_tx.v PCF= icestick.pcf PROJ= fpga all: ${PROJ}.bin ${PROJ}.json: ${VSRC} yosys-wrap top $@ ${VSRC} | tee synthesis.rpt ${PROJ}.asc: ${PROJ}.json ${PCF} nextpnr-ice40 --hx1k --package tq144 --asc $@ --pcf ${PCF} \ --json ${PROJ}.json ${PROJ}.bin: ${PROJ}.asc icepack $< $@ clean: rm -f *.json *.asc *.bin