diff --git a/scripts/compile_flow_quartus.bat b/scripts/compile_flow_quartus.bat new file mode 100644 index 0000000..ab15fb2 --- /dev/null +++ b/scripts/compile_flow_quartus.bat @@ -0,0 +1,18 @@ +@echo off +rem ---------------------------------------------------------------------------- +rem compile_flow_quartus.bat +rem Konstantin Pavlov, pavlovconst@gmail.com +rem ---------------------------------------------------------------------------- + +rem The simplest way to compile Quartus project from commandline + + +for /R %%f in (*.qpf) do ( + echo "Project name is %%~nf" + + quartus_sh --flow compile %%~nf +) +echo "DONE!" + +pause +exit diff --git a/scripts/convert_sof_to_jic.bat b/scripts/convert_sof_to_jic.bat new file mode 100644 index 0000000..57a74e7 --- /dev/null +++ b/scripts/convert_sof_to_jic.bat @@ -0,0 +1,11 @@ +@echo off +rem ---------------------------------------------------------------------------- +rem convert_sof_to_jic.bat +rem Konstantin Pavlov, pavlovconst@gmail.com +rem ---------------------------------------------------------------------------- + + +echo "onverting .SOF to .JIC" +del /s /q .\out\SYNC_MM_PG_prj_128.jic +quartus_cpf -c -d EPCQ128 -s 5CGXFC4C7 .\out\PRJ_NAME.sof .\out\PRJ_NAME_128.jic +