瀏覽代碼

Beautified Again!

Okay now it looks formal.
NonstickAtom785 4 年之前
父節點
當前提交
3a30070aa0
共有 1 個文件被更改,包括 12 次插入26 次删除
  1. 12 26
      compile.bat

+ 12 - 26
compile.bat

@@ -14,38 +14,31 @@ cd src
   set /P c=Compile Gramme?(Y/N)
   if /I "%c%" EQU "Y" (
 
-  echo "Generating grammer2.5.inc"
-  python ..\tools\jt.py jmptable.z80 grammer2.5.inc
-  copy grammer2.5.inc ..\docs\grammer2.5.inc
-
-  echo "Assembling App"
-  ..\spasm.exe grammer.z80 ..\bin\grammer.8xk -I ..\z80float\single
-
+    echo "Generating grammer2.5.inc"
+    python ..\tools\jt.py jmptable.z80 grammer2.5.inc
+    copy grammer2.5.inc ..\docs\grammer2.5.inc
+    echo "Assembling App"
+    ..\spasm.exe grammer.z80 ..\bin\grammer.8xk -I ..\z80float\single
+    
   )
 
   if /I "%c%" EQU "N" goto :grampkg
-
 goto :Grammer
 
 :grampkg
-
   set /P c=Compile Default Package?(Y/N)
   if /I "%c%" EQU "Y" (
-
-  echo "Assembling Default Package"
-  ..\spasm.exe grampkg.z80 ..\bin\grampkg.8xv
-
+    echo "Assembling Default Package"
+    ..\spasm.exe grampkg.z80 ..\bin\grampkg.8xv
   )
 
   if /I "%c%" EQU "N" goto :exppkg
-
 goto :grampkg
 
 
 rem Check for an experimental package
 
 if exist experimental\experimental.z80 (
-
 :exppkg
   set /P c=Compile Experimental Package?(Y/N)
   if /I "%c%" EQU "Y" (
@@ -54,28 +47,21 @@ if exist experimental\experimental.z80 (
   )
 
   if /I "%c%" EQU "N" goto :proglaunch
-
-  goto :exppkg
-
+goto :exppkg
 )
 
 rem Check for the program launcher
-
 if exist launch.z80 (
-
 :proglaunch
   set /P c=Compile Program Launcher?(Y/N)
   if /I "%c%" EQU "Y" (
-  echo "Assembling Program Launcher"
-  ..\spasm.exe launch.z80 ..\bin\g250.8xp
+    echo "Assembling Program Launcher"
+    ..\spasm.exe launch.z80 ..\bin\g250.8xp
   )
- 
+  
   if /I "%c%" EQU "N" goto :exit
-
 goto :proglaunch
-
 )
 
 :exit
 cd..
-