Prechádzať zdrojové kódy

Fixed version

Fixed Typo
Fixed the not generating grammer2.5.inc file if not compiling the app.
NonstickAtom785 4 rokov pred
rodič
commit
c7223ca07a
1 zmenil súbory, kde vykonal 6 pridanie a 4 odobranie
  1. 6 4
      compile.bat

+ 6 - 4
compile.bat

@@ -10,13 +10,15 @@ if exist spasm.exe (
 
 cd src
 
+rem Generates the jumptable and grammer2.5.inc file together.
+  echo "Generating grammer2.5.inc"
+  python ..\tools\jt.py jmptable.z80 grammer2.5.inc
+  copy /Y grammer2.5.inc ..\docs\grammer2.5.inc
+
 :Grammer
-  set /P c=Compile Gramme?(Y/N)
+  set /P c=Compile Grammer?(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