소스 검색

Fixed version

Fixed Typo
Fixed the not generating grammer2.5.inc file if not compiling the app.
NonstickAtom785 4 년 전
부모
커밋
c7223ca07a
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  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