summaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorJulian Blake Kongslie2021-04-04 14:15:49 -0700
committerJulian Blake Kongslie2021-04-04 14:15:49 -0700
commit719a9143cd0706165a4be857439f6da6791fc0db (patch)
treef762f282cab2e2887d637a449f1daf08dab7f6ff /build.bat
parentChange assembler input to make it idempotent. (diff)
downloadnoncpu-719a9143cd0706165a4be857439f6da6791fc0db.tar.xz
Remove unneeded .exe suffixes in bat scripts.
Diffstat (limited to '')
-rw-r--r--build.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.bat b/build.bat
index 1ea5782..6ce6e83 100644
--- a/build.bat
+++ b/build.bat
@@ -4,11 +4,11 @@ if not exist noncpu.qpf (
4 call clean.bat 4 call clean.bat
5) 5)
6 6
7quartus_sh.exe --flow compile noncpu 7quartus_sh --flow compile noncpu
8 8
9if exist noncpu.sof ( 9if exist noncpu.sof (
10 quartus_pgm.exe -c 1 -m JTAG -o P;noncpu.sof@1 10 quartus_pgm -c 1 -m JTAG -o P;noncpu.sof@1
11 nios2-terminal.exe 11 nios2-terminal
12) else ( 12) else (
13 pause 13 pause
14) 14)