FreeCalypso > hg > fc-pcm-if
view fpga/mcsi-rx/Makefile @ 16:f422d19c0118 default tip
fc-mcsi-rxtx: fix bug in PCM sample Rx
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 29 Oct 2024 01:41:33 +0000 |
parents | b3190839cce3 |
children |
line wrap: on
line source
VSRC= clk_check.v clk_edge.v mcsi_rx.v sync_inputs.v top.v uart_tx.v PCF= ../common/icestick-mcsi.pcf PROJ= fpga all: ${PROJ}.bin timing.rpt ${PROJ}.json: ${VSRC} ../tools/yosys-tee top $@ synthesis.rpt ${VSRC} ${PROJ}.asc: ${PROJ}.json ${PCF} nextpnr-ice40 --hx1k --package tq144 --asc $@ --pcf ${PCF} \ --json ${PROJ}.json -l pnr.rpt ${PROJ}.bin: ${PROJ}.asc icepack $< $@ timing.rpt: ${PROJ}.asc icetime -d hx1k -mtr $@ $< clean: rm -f *.json *.asc *.bin *.rpt