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:
Wayne Warthen
2021-10-25 11:50:09 -07:00
parent d9d95e76dc
commit 40d744f81f
17 changed files with 12494 additions and 228 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View 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

View File

@@ -0,0 +1,6 @@
@echo off
setlocal
if exist *.com del *.com
if exist *.lst del *.lst
if exist *.bin del *.bin

View 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

File diff suppressed because it is too large Load Diff

Binary file not shown.

7433
Source/Apps/Test/rzsz/sz.asm Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.