Browse Source
Merge pull request #1 from wwarthen/master
Resync
pull/18/head
b1ackmai1er
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with
10 additions and
13 deletions
-
Source/BuildShared.cmd
-
Source/Clean.cmd
-
Source/Forth/Build.cmd
-
Source/Forth/Clean.cmd
-
Source/Forth/camel80.azm
-
Source/Forth/camel80d.azm
-
Source/Forth/camel80h.azm
-
Source/Forth/cameltst.azm
-
Source/Forth/camldump.azm
-
Source/Forth/copying
-
Source/Forth/glosshi.txt
-
Source/Forth/glosslo.txt
-
Source/Forth/readme.z80
-
Source/HBIOS/Build.cmd
-
Source/HBIOS/Build.ps1
|
|
|
@ -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") |
|
|
|
{ |
|
|
|
|