Minor Cleanup

This commit is contained in:
Wayne Warthen
2018-11-06 19:51:20 -08:00
parent 2633a7711d
commit 8586202ae2
15 changed files with 10 additions and 13 deletions

View File

@@ -7,3 +7,4 @@ setlocal & cd ZCPR && call Build || exit /b 1 & endlocal
setlocal & cd ZCPR-DJ && call Build || exit /b 1 & endlocal
setlocal & cd ZSDOS && call Build || exit /b 1 & endlocal
setlocal & cd CBIOS && call Build || exit /b 1 & endlocal
setlocal & cd Forth && call Build || exit /b 1 & endlocal

View File

@@ -7,6 +7,7 @@ setlocal & cd ZCPR && call Clean.cmd & endlocal
setlocal & cd ZCPR-DJ && call Clean.cmd & endlocal
setlocal & cd ZSDOS && call Clean.cmd & endlocal
setlocal & cd CBIOS && call Clean.cmd & endlocal
setlocal & cd Forth && call Clean.cmd & endlocal
setlocal & cd BPBIOS && call Clean.cmd & endlocal
setlocal & cd HBIOS && call Clean.cmd & endlocal
setlocal & cd Doc && call Clean.cmd & endlocal

View File

@@ -1,7 +1,7 @@
@echo off
setlocal
set TOOLS=../../../Tools
set TOOLS=../../Tools
set PATH=%TOOLS%\tasm32;%TOOLS%\zx;%PATH%
@@ -13,7 +13,3 @@ set ZXINCDIR=%TOOLS%/cpm/include/
zx z80mr camel80
zx MLOAD25 -camel80.bin=camel80.hex
copy camel80.bin ..\
goto :eof

View File

@@ -2,8 +2,4 @@
set TOOLS=../../Tools
setlocal & cd .\Forth && call Build || exit /b 1 & endlocal
setlocal
PowerShell .\Build.ps1 %*

View File

@@ -151,22 +151,25 @@ ROMSIZE .EQU ${ROMSize} ; SIZE OF ROM IN KB
;
"@ | Out-File "build.inc" -Encoding ASCII
# Create a local copy of the CP/M CCP and BDOS images for later use.
# Bring over previously assembled binary copy of the CP/M CCP and BDOS images for later use.
Copy-Item '..\cpm22\os2ccp.bin' 'ccp.bin'
Copy-Item '..\cpm22\os3bdos.bin' 'bdos.bin'
# Create a local copy of the ZSystem CCP and BDOS images for later use.
# Bring over previously assembled binary copy of the ZSystem CCP and BDOS images for later use.
Copy-Item '..\zcpr-dj\zcpr.bin' 'zcpr.bin'
Copy-Item '..\zsdos\zsdos.bin' 'zsdos.bin'
# Bring over previously assembled binary copy of Forth for later use.
Copy-Item '..\Forth\camel80.bin' 'camel80.bin'
# Assemble individual components. Note in the case of UNA, there is less to build.
Asm 'dbgmon'
Asm 'prefix'
Asm 'romldr'
Asm 'eastaegg'
Asm 'eastaegg'
Asm 'nascom'
Asm 'tastybasic'
Asm 'imgpad'
Asm 'imgpad'
Asm 'imgpad0'
if ($Platform -ne "UNA")
{