Skip to content

Commit 2543bcd

Browse files
committed
Added scripts
1 parent 3d0bb13 commit 2543bcd

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

scripts/compile_flow_quartus.bat

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

scripts/convert_sof_to_jic.bat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+

0 commit comments

Comments
 (0)