summaryrefslogtreecommitdiff
path: root/build.bat
blob: 6ce6e83015004a14828c6531d0d7b8afb235a0e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if not exist noncpu.qpf (
    call init.bat
) else (
    call clean.bat
)

quartus_sh --flow compile noncpu

if exist noncpu.sof (
    quartus_pgm -c 1 -m JTAG -o P;noncpu.sof@1
    nios2-terminal
) else (
    pause
)