File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ rem ----------------------------------------------------------------------------
3
+ rem compile_flow_quartus.bat
4
+ rem Konstantin Pavlov, pavlovconst@gmail.com
5
+ rem ----------------------------------------------------------------------------
6
+
7
+ rem The simplest way to compile Quartus project from commandline
8
+
9
+
10
+ for /R %%f in (*.qpf) do (
11
+ echo " Project name is %%~nf "
12
+
13
+ quartus_sh --flow compile %%~nf
14
+ )
15
+ echo " DONE!"
16
+
17
+ pause
18
+ exit
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ rem ----------------------------------------------------------------------------
3
+ rem convert_sof_to_jic.bat
4
+ rem Konstantin Pavlov, pavlovconst@gmail.com
5
+ rem ----------------------------------------------------------------------------
6
+
7
+
8
+ echo " onverting .SOF to .JIC"
9
+ del /s /q .\out\SYNC_MM_PG_prj_128.jic
10
+ quartus_cpf -c -d EPCQ128 -s 5CGXFC4C7 .\out\PRJ_NAME.sof .\out\PRJ_NAME_128.jic
11
+
You can’t perform that action at this time.
0 commit comments