mirror of
https://github.com/UzixLS/zx-sizif-xxs.git
synced 2025-07-18 23:01:40 +03:00
33 lines
994 B
Makefile
33 lines
994 B
Makefile
REV = A
|
|
REVISION = rev_${REV}
|
|
|
|
.PHONY: build sof2jic program_sof program_jic clean report
|
|
|
|
build:
|
|
quartus_sh --no_banner --flow compile zx_ula -c ${REVISION}
|
|
|
|
sof2jic:
|
|
cp -f "output/${REVISION}.sof" output/zx_ula.sof
|
|
quartus_cpf -c sof2jic.cof
|
|
mv output/zx_ula.jic "output/${REVISION}.jic"
|
|
rm output/zx_ula.sof
|
|
|
|
rbf2bin:
|
|
srec_cat output/rev_${REV}.rbf -binary -Bit_Reverse 2 -Byte_Swap 2 -o output/rev_${REV}.bin -binary
|
|
|
|
program_sof:
|
|
quartus_pgm --no_banner --mode=jtag -o "P;output/${REVISION}.sof"
|
|
|
|
program_jic:
|
|
quartus_pgm --no_banner --mode=jtag -o "PVBI;output/${REVISION}.jic"
|
|
|
|
clean:
|
|
rm -rf db incremental_db output
|
|
|
|
report:
|
|
cat output/${REVISION}.*.smsg output/${REVISION}.*.rpt |grep -e Error -e Critical -e Warning |grep -v -e "Family doesn't support jitter analysis" -e "Force Fitter to Avoid Periphery Placement Warnings"
|
|
|
|
export PATH:=/opt/quartus13.0sp1/quartus/bin:/cygdrive/c/Hwdev/quartus130sp1/quartus/bin:/cygdrive/c/Dev/srec/bin/:${PATH}
|
|
|
|
-include Makefile.local
|