mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
Add RZ/SZ Source Build
- Added source build of RZ and SZ from Andrew - More needless tweaking of the document build process
This commit is contained in:
@@ -18,6 +18,7 @@ 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
|
||||
|
||||
goto :eof
|
||||
|
||||
|
||||
@@ -13,3 +13,4 @@ pushd inttest && call Clean || exit /b 1 & popd
|
||||
pushd ppidetst && call Clean || exit /b 1 & popd
|
||||
pushd ramtest && call Clean || exit /b 1 & popd
|
||||
pushd I2C && call Clean || exit /b 1 & popd
|
||||
pushd rzsz && call Clean || exit /b 1 & popd
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
OBJECTS =
|
||||
SUBDIRS = DMAmon I2C inttest ppidetst ramtest tstdskng
|
||||
SUBDIRS = DMAmon I2C inttest ppidetst ramtest tstdskng rzsz
|
||||
DEST = ../../../Binary/Apps/Test
|
||||
TOOLS =../../../Tools
|
||||
|
||||
|
||||
17
Source/Apps/Test/rzsz/Build.cmd
Normal file
17
Source/Apps/Test/rzsz/Build.cmd
Normal file
@@ -0,0 +1,17 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
set TOOLS=../../../../Tools
|
||||
set PATH=%TOOLS%\tasm32;%PATH%
|
||||
set TASMTABS=%TOOLS%\tasm32
|
||||
|
||||
tasm -t80 -b -f00 rz.asm rz.com rz.lst || exit /b
|
||||
tasm -t80 -b -f00 sz.asm sz.com sz.lst || exit /b
|
||||
|
||||
:: Compare to original distribution
|
||||
:: Need to remove these lines when starting to make actual changes
|
||||
fc /B rz.com rz.com.orig || exit /b
|
||||
fc /B sz.com sz.com.orig || exit /b
|
||||
|
||||
copy /Y rz.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
||||
copy /Y sz.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
||||
6
Source/Apps/Test/rzsz/Clean.cmd
Normal file
6
Source/Apps/Test/rzsz/Clean.cmd
Normal file
@@ -0,0 +1,6 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
if exist *.com del *.com
|
||||
if exist *.lst del *.lst
|
||||
if exist *.bin del *.bin
|
||||
7
Source/Apps/Test/rzsz/Makefile
Normal file
7
Source/Apps/Test/rzsz/Makefile
Normal file
@@ -0,0 +1,7 @@
|
||||
OBJECTS = rz.com sz.com
|
||||
DEST = ../../../../Binary/Apps/Test
|
||||
TOOLS =../../../../Tools
|
||||
|
||||
USETASM=1
|
||||
|
||||
include $(TOOLS)/Makefile.inc
|
||||
4941
Source/Apps/Test/rzsz/rz.asm
Normal file
4941
Source/Apps/Test/rzsz/rz.asm
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Source/Apps/Test/rzsz/rz.com.orig
Normal file
BIN
Source/Apps/Test/rzsz/rz.com.orig
Normal file
Binary file not shown.
7433
Source/Apps/Test/rzsz/sz.asm
Normal file
7433
Source/Apps/Test/rzsz/sz.asm
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Source/Apps/Test/rzsz/sz.com.orig
Normal file
BIN
Source/Apps/Test/rzsz/sz.com.orig
Normal file
Binary file not shown.
Reference in New Issue
Block a user