-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
85 changed files
with
2,517 additions
and
735 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@echo off | ||
setlocal | ||
|
||
if exist *.pt? del *.pt? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.