Browse Source

Minor Cleanup

pull/23/head
Wayne Warthen 7 years ago
parent
commit
8586202ae2
  1. 1
      Source/BuildShared.cmd
  2. 1
      Source/Clean.cmd
  3. 6
      Source/Forth/Build.cmd
  4. 0
      Source/Forth/Clean.cmd
  5. 0
      Source/Forth/camel80.azm
  6. 0
      Source/Forth/camel80d.azm
  7. 0
      Source/Forth/camel80h.azm
  8. 0
      Source/Forth/cameltst.azm
  9. 0
      Source/Forth/camldump.azm
  10. 0
      Source/Forth/copying
  11. 0
      Source/Forth/glosshi.txt
  12. 0
      Source/Forth/glosslo.txt
  13. 0
      Source/Forth/readme.z80
  14. 4
      Source/HBIOS/Build.cmd
  15. 11
      Source/HBIOS/Build.ps1

1
Source/BuildShared.cmd

@ -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 ZCPR-DJ && call Build || exit /b 1 & endlocal
setlocal & cd ZSDOS && 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 CBIOS && call Build || exit /b 1 & endlocal
setlocal & cd Forth && call Build || exit /b 1 & endlocal

1
Source/Clean.cmd

@ -7,6 +7,7 @@ setlocal & cd ZCPR && call Clean.cmd & endlocal
setlocal & cd ZCPR-DJ && call Clean.cmd & endlocal setlocal & cd ZCPR-DJ && call Clean.cmd & endlocal
setlocal & cd ZSDOS && call Clean.cmd & endlocal setlocal & cd ZSDOS && call Clean.cmd & endlocal
setlocal & cd CBIOS && 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 BPBIOS && call Clean.cmd & endlocal
setlocal & cd HBIOS && call Clean.cmd & endlocal setlocal & cd HBIOS && call Clean.cmd & endlocal
setlocal & cd Doc && call Clean.cmd & endlocal setlocal & cd Doc && call Clean.cmd & endlocal

6
Source/HBIOS/Forth/Build.cmd → Source/Forth/Build.cmd

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

0
Source/HBIOS/Forth/Clean.cmd → Source/Forth/Clean.cmd

0
Source/HBIOS/Forth/camel80.azm → Source/Forth/camel80.azm

0
Source/HBIOS/Forth/camel80d.azm → Source/Forth/camel80d.azm

0
Source/HBIOS/Forth/camel80h.azm → Source/Forth/camel80h.azm

0
Source/HBIOS/Forth/cameltst.azm → Source/Forth/cameltst.azm

0
Source/HBIOS/Forth/camldump.azm → Source/Forth/camldump.azm

0
Source/HBIOS/Forth/copying → Source/Forth/copying

0
Source/HBIOS/Forth/glosshi.txt → Source/Forth/glosshi.txt

0
Source/HBIOS/Forth/glosslo.txt → Source/Forth/glosslo.txt

0
Source/HBIOS/Forth/readme.z80 → Source/Forth/readme.z80

4
Source/HBIOS/Build.cmd

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

11
Source/HBIOS/Build.ps1

@ -151,22 +151,25 @@ ROMSIZE .EQU ${ROMSize} ; SIZE OF ROM IN KB
; ;
"@ | Out-File "build.inc" -Encoding ASCII "@ | 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\os2ccp.bin' 'ccp.bin'
Copy-Item '..\cpm22\os3bdos.bin' 'bdos.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 '..\zcpr-dj\zcpr.bin' 'zcpr.bin'
Copy-Item '..\zsdos\zsdos.bin' 'zsdos.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. # Assemble individual components. Note in the case of UNA, there is less to build.
Asm 'dbgmon' Asm 'dbgmon'
Asm 'prefix' Asm 'prefix'
Asm 'romldr' Asm 'romldr'
Asm 'eastaegg'
Asm 'eastaegg'
Asm 'nascom' Asm 'nascom'
Asm 'tastybasic' Asm 'tastybasic'
Asm 'imgpad'
Asm 'imgpad'
Asm 'imgpad0' Asm 'imgpad0'
if ($Platform -ne "UNA") if ($Platform -ne "UNA")
{ {

Loading…
Cancel
Save