forked from MirrorRepos/RomWBW
Browse Source
- Removed duplicate files in disk image process - Moved all applications to individual foldersmaster
81 changed files with 301 additions and 125 deletions
@ -1,24 +1,32 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.bin del *.bin |
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.hex del *.hex |
|||
if exist *.prn del *.prn |
|||
call :clean syscopy || exit /b |
|||
call :clean assign || exit /b |
|||
call :clean format || exit /b |
|||
call :clean talk || exit /b |
|||
call :clean mode || exit /b |
|||
call :clean rtc || exit /b |
|||
call :clean timer || exit /b |
|||
call :clean sysgen || exit /b |
|||
call :clean XM || exit /b |
|||
call :clean FDU || exit /b |
|||
call :clean Tune || exit /b |
|||
call :clean FAT || exit /b |
|||
call :clean Test || exit /b |
|||
call :clean ZMP || exit /b |
|||
call :clean ZMD || exit /b |
|||
call :clean Dev || exit /b |
|||
call :clean VGM || exit /b |
|||
call :clean cpuspd || exit /b |
|||
call :clean reboot || exit /b |
|||
call :clean Survey || exit /b |
|||
call :clean HTalk || exit /b |
|||
call :clean BBCBASIC || exit /b |
|||
call :clean copysl || exit /b |
|||
|
|||
pushd XM && call Clean || exit /b 1 & popd |
|||
pushd FDU && call Clean || exit /b 1 & popd |
|||
pushd Tune && call Clean || exit /b 1 & popd |
|||
pushd FAT && call Clean || exit /b 1 & popd |
|||
pushd Test && call Clean || exit /b 1 & popd |
|||
pushd ZMP && call Clean || exit /b 1 & popd |
|||
pushd ZMD && call Clean || exit /b 1 & popd |
|||
pushd Dev && call Clean || exit /b 1 & popd |
|||
pushd VGM && call Clean || exit /b 1 & popd |
|||
pushd cpuspd && call Clean || exit /b 1 & popd |
|||
pushd reboot && call Clean || exit /b 1 & popd |
|||
pushd Survey && call Clean || exit /b 1 & popd |
|||
pushd HTalk && call Clean || exit /b 1 & popd |
|||
pushd BBCBASIC && call Clean || exit /b 1 & popd |
|||
pushd copysl && call Clean || exit /b 1 & popd |
|||
goto :eof |
|||
|
|||
:clean |
|||
pushd %1 && call Clean || exit /b & popd |
|||
goto :eof |
|||
|
|||
@ -1,42 +1,31 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set APPBIN=..\..\Binary\Apps |
|||
|
|||
set TOOLS=..\..\..\Tools |
|||
set PATH=%TOOLS%\tasm32;%TOOLS%\zxcc;%PATH% |
|||
|
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
set CPMDIR80=%TOOLS%/cpm/ |
|||
|
|||
pushd DMAmon && call Build || exit /b & popd |
|||
pushd tstdskng && call Build || exit /b & popd |
|||
pushd inttest && call Build || exit /b & popd |
|||
pushd ppidetst && call Build || exit /b & popd |
|||
pushd ramtest && call Build || exit /b & popd |
|||
pushd I2C && call Build || exit /b & popd |
|||
pushd rzsz && call Build || exit /b & popd |
|||
pushd vdctest && call Build || exit /b & popd |
|||
pushd kbdtest && call Build || exit /b & popd |
|||
pushd ps2info && call Build || exit /b & popd |
|||
pushd 2piotst && call Build || exit /b & popd |
|||
pushd piomon && call Build || exit /b & popd |
|||
pushd banktest && call Build || exit /b & popd |
|||
pushd portscan && call Build || exit /b & popd |
|||
pushd sound && call Build || exit /b & popd |
|||
pushd testh8p && call Build || exit /b & popd |
|||
|
|||
goto :eof |
|||
call :build DMAmon || exit /b |
|||
call :build tstdskng || exit /b |
|||
call :build inttest || exit /b |
|||
call :build ppidetst || exit /b |
|||
call :build ramtest || exit /b |
|||
call :build I2C || exit /b |
|||
call :build rzsz || exit /b |
|||
call :build vdctest || exit /b |
|||
call :build kbdtest || exit /b |
|||
call :build ps2info || exit /b |
|||
call :build 2piotst || exit /b |
|||
call :build piomon || exit /b |
|||
call :build banktest || exit /b |
|||
call :build portscan || exit /b |
|||
call :build sound || exit /b |
|||
call :build testh8p || exit /b |
|||
|
|||
:asm |
|||
echo. |
|||
echo Building %1... |
|||
tasm -t80 -g3 -fFF %1.asm %1.com %1.lst || exit /b |
|||
goto :eof |
|||
|
|||
:asm180 |
|||
echo. |
|||
echo Building %1... |
|||
tasm -t180 -g3 -fFF %1.asm %1.com %1.lst || exit /b |
|||
:build |
|||
echo Building %1 |
|||
pushd %1 && call Build || exit /b & popd |
|||
goto :eof |
|||
|
|||
@ -1,6 +1,6 @@ |
|||
OBJECTS = |
|||
# OBJECTS =
|
|||
SUBDIRS = DMAmon I2C inttest ppidetst ramtest tstdskng rzsz vdctest kbdtest ps2info 2piotst piomon banktest portscan sound testh8p |
|||
DEST = ../../../Binary/Apps/Test |
|||
# DEST = ../../../Binary/Apps/Test
|
|||
TOOLS =../../../Tools |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF assign.asm assign.com assign.lst || exit /b |
|||
|
|||
copy /Y assign.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = assign.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF format.asm format.com format.lst || exit /b |
|||
|
|||
copy /Y format.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = format.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF mode.asm mode.com mode.lst || exit /b |
|||
|
|||
copy /Y mode.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = mode.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,12 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF rtc.asm rtc.com rtc.lst || exit /b |
|||
tasm -t80 -g3 -fFF rtchb.asm rtchb.com rtchb.lst || exit /b |
|||
|
|||
copy /Y rtc.com ..\..\..\Binary\Apps\ || exit /b |
|||
copy /Y rtchb.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = rtc.com rtchb.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF syscopy.asm syscopy.com syscopy.lst || exit /b |
|||
|
|||
copy /Y syscopy.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = syscopy.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,13 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=..\..\..\Tools |
|||
set PATH=%TOOLS%\tasm32;%TOOLS%\zxcc;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
set CPMDIR80=%TOOLS%/cpm/ |
|||
|
|||
:: tasm -t80 -g3 -fFF sysgen.asm sysgen.com sysgen.lst || exit /b |
|||
|
|||
zxcc Z80ASM -SYSGEN/F || exit /b |
|||
|
|||
copy /Y sysgen.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = sysgen.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF talk.asm talk.com talk.lst || exit /b |
|||
|
|||
copy /Y talk.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = talk.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF timer.asm timer.com timer.lst || exit /b |
|||
|
|||
copy /Y timer.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
@ -0,0 +1,7 @@ |
|||
OBJECTS = timer.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue