Skip to content

Commit

Permalink
Finalize v2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wwarthen committed Jan 27, 2018
1 parent 231239f commit 55d7b5e
Show file tree
Hide file tree
Showing 85 changed files with 2,517 additions and 735 deletions.
6 changes: 6 additions & 0 deletions Binary/Apps/Clean.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off
setlocal

if exist *.com del *.com

setlocal & cd Tunes && call Clean || exit /b 1 & endlocal
14 changes: 14 additions & 0 deletions Binary/Apps/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
***********************************************************************
*** ***
*** R o m W B W ***
*** ***
*** Z80/Z180 System Software ***
*** ***
***********************************************************************

This directory contains the executable application files that
are specific to RomWBW. The source for these applications is found
in the Source\Apps directory of the distribution.

The Tunes subdirectory contains some sample ProTracker sound
files that can be played by the PTxPlay application.
4 changes: 4 additions & 0 deletions Binary/Apps/Tunes/Clean.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
setlocal

if exist *.pt? del *.pt?
10 changes: 10 additions & 0 deletions Binary/Apps/Tunes/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
***********************************************************************
*** ***
*** R o m W B W ***
*** ***
*** Z80/Z180 System Software ***
*** ***
***********************************************************************

This directory contains some sample ProTracker sound
files that can be played by the PTxPlay application.
6 changes: 5 additions & 1 deletion Binary/Clean.cmd
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
@echo off
setlocal

if exist *.bin del *.bin
if exist *.com del *.com
if exist *.img del *.img
if exist *.rom del *.rom
if exist *.pdf del *.pdf
if exist *.log del *.log
if exist *.eeprom del *.eeprom
if exist *.eeprom del *.eeprom

setlocal & cd Apps && call Clean || exit /b 1 & endlocal
7 changes: 7 additions & 0 deletions Binary/ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,10 @@ indicates which file targets each of the Propeller board variants:

Refer to the board documentation of the boards for more information
on how to program the EEPROMs on these boards.

Apps Directory
--------------

The Apps subdirectory contains the executable application files that
are specific to RomWBW. The source for these applications is found
in the Source\Apps directory of the distribution.
2 changes: 1 addition & 1 deletion ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
***********************************************************************

Wayne Warthen (wwarthen@gmail.com)
Version 2.9.0 (prerelease), 2018-01-16
Version 2.9.0, 2018-01-26
https://www.retrobrewcomputers.org/

RomWBW is a ROM-based implementation of CP/M-80 2.2 and Z-System for
Expand Down
4 changes: 4 additions & 0 deletions Source/Apps/Build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
setlocal

set TOOLS=../../Tools
set APPBIN=..\..\Binary\Apps

set PATH=%TOOLS%\tasm32;%TOOLS%\zx;%PATH%

Expand All @@ -27,6 +28,9 @@ zx MLOAD25 -SURVEY.COM=SURVEY.HEX

setlocal & cd XM && call Build || exit /b 1 & endlocal
setlocal & cd FDU && call Build || exit /b 1 & endlocal
setlocal & cd PTxPlay && call Build || exit /b 1 & endlocal

copy *.com %APPBIN%\

goto :eof

Expand Down
1 change: 1 addition & 0 deletions Source/Apps/Clean.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ if exist *.prn del *.prn

setlocal & cd XM && call Clean || exit /b 1 & endlocal
setlocal & cd FDU && call Clean || exit /b 1 & endlocal
setlocal & cd PTxPlay && call Clean || exit /b 1 & endlocal
2 changes: 1 addition & 1 deletion Source/Apps/FDU/Build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ tasm -t80 -b -fFF FDU.asm FDU.com FDU.lst

if errorlevel 1 goto :eof

move /Y FDU.com ..
copy /Y FDU.com ..\..\..\Binary\Apps\
copy /Y FDU.txt ..\..\..\Doc\
2 changes: 2 additions & 0 deletions Source/Apps/FDU/Clean.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
@echo off
setlocal

if exist *.com del *.com
if exist *.lst del *.lst
if exist *.zip del *.zip
13 changes: 13 additions & 0 deletions Source/Apps/PTxPlay/Build.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@echo off
setlocal

set TOOLS=../../../Tools
set PATH=%TOOLS%\tasm32;%PATH%
set TASMTABS=%TOOLS%\tasm32

tasm -t180 -g3 -fFF PTxPlay.asm PTxPlay.com PTxPlay.lst

if errorlevel 1 goto :eof

copy /Y PTxPlay.com ..\..\..\Binary\Apps\
copy /Y Tunes\*.pt3 ..\..\..\Binary\Apps\Tunes\
5 changes: 5 additions & 0 deletions Source/Apps/PTxPlay/Clean.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off
setlocal

if exist *.com del *.com
if exist *.lst del *.lst
Loading

0 comments on commit 55d7b5e

Please sign in to comment.