mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
Minor Cleanup
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -2,8 +2,4 @@
|
||||
|
||||
set TOOLS=../../Tools
|
||||
|
||||
setlocal & cd .\Forth && call Build || exit /b 1 & endlocal
|
||||
|
||||
setlocal
|
||||
|
||||
PowerShell .\Build.ps1 %*
|
||||
|
||||
@@ -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")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user