|
@@ -14,38 +14,31 @@ cd src
|
|
set /P c=Compile Gramme?(Y/N)
|
|
set /P c=Compile Gramme?(Y/N)
|
|
if /I "%c%" EQU "Y" (
|
|
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
|
|
if /I "%c%" EQU "N" goto :grampkg
|
|
-
|
|
|
|
goto :Grammer
|
|
goto :Grammer
|
|
|
|
|
|
:grampkg
|
|
:grampkg
|
|
-
|
|
|
|
set /P c=Compile Default Package?(Y/N)
|
|
set /P c=Compile Default Package?(Y/N)
|
|
if /I "%c%" EQU "Y" (
|
|
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
|
|
if /I "%c%" EQU "N" goto :exppkg
|
|
-
|
|
|
|
goto :grampkg
|
|
goto :grampkg
|
|
|
|
|
|
|
|
|
|
rem Check for an experimental package
|
|
rem Check for an experimental package
|
|
|
|
|
|
if exist experimental\experimental.z80 (
|
|
if exist experimental\experimental.z80 (
|
|
-
|
|
|
|
:exppkg
|
|
:exppkg
|
|
set /P c=Compile Experimental Package?(Y/N)
|
|
set /P c=Compile Experimental Package?(Y/N)
|
|
if /I "%c%" EQU "Y" (
|
|
if /I "%c%" EQU "Y" (
|
|
@@ -54,28 +47,21 @@ if exist experimental\experimental.z80 (
|
|
)
|
|
)
|
|
|
|
|
|
if /I "%c%" EQU "N" goto :proglaunch
|
|
if /I "%c%" EQU "N" goto :proglaunch
|
|
-
|
|
|
|
- goto :exppkg
|
|
|
|
-
|
|
|
|
|
|
+goto :exppkg
|
|
)
|
|
)
|
|
|
|
|
|
rem Check for the program launcher
|
|
rem Check for the program launcher
|
|
-
|
|
|
|
if exist launch.z80 (
|
|
if exist launch.z80 (
|
|
-
|
|
|
|
:proglaunch
|
|
:proglaunch
|
|
set /P c=Compile Program Launcher?(Y/N)
|
|
set /P c=Compile Program Launcher?(Y/N)
|
|
if /I "%c%" EQU "Y" (
|
|
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
|
|
if /I "%c%" EQU "N" goto :exit
|
|
-
|
|
|
|
goto :proglaunch
|
|
goto :proglaunch
|
|
-
|
|
|
|
)
|
|
)
|
|
|
|
|
|
:exit
|
|
:exit
|
|
cd..
|
|
cd..
|
|
-
|
|
|