Browse Source

resync

pull/206/head
b1ackmai1er 5 years ago
parent
commit
fe8425deef
  1. 3
      Doc/ChangeLog.txt
  2. 2
      Source/Apps/FAT/Build.cmd
  3. 4
      Source/Apps/FAT/Makefile
  4. 6
      Source/Apps/FDU/Build.cmd
  5. 4
      Source/Apps/FDU/Makefile
  6. 16
      Source/Apps/Tune/Makefile

3
Doc/ChangeLog.txt

@ -36,6 +36,9 @@ Version 3.1.1
- L?N: Slightly enhanced ZCPRD&J w/ a couple bug fixes - L?N: Slightly enhanced ZCPRD&J w/ a couple bug fixes
- L?N: UNZIPZ4 which handles most modern ZIP file compression algorithms - L?N: UNZIPZ4 which handles most modern ZIP file compression algorithms
- AJL: Preliminary support for MBC systems - AJL: Preliminary support for MBC systems
- WBW: Added preliminary support for DSKYng
- WBW: Elevated MBC to a platform
- WBW: Added support for MBC user LEDs
Version 3.1 Version 3.1
----------- -----------

2
Source/Apps/FAT/Build.cmd

@ -4,4 +4,4 @@ setlocal
REM FAT.com is currently distributed as a binary application, so REM FAT.com is currently distributed as a binary application, so
REM it is not built here. REM it is not built here.
copy /Y FAT.com ..\..\..\Binary\Apps\
copy /Y fat.com ..\..\..\Binary\Apps\

4
Source/Apps/FAT/Makefile

@ -1,5 +1,5 @@
OBJECTS = FAT.com
NODELETE = FAT.com
OBJECTS = fat.com
NODELETE = fat.com
DEST = ../../../Binary/Apps DEST = ../../../Binary/Apps
TOOLS=../../../Tools TOOLS=../../../Tools

6
Source/Apps/FDU/Build.cmd

@ -5,9 +5,9 @@ set TOOLS=../../../Tools
set PATH=%TOOLS%\tasm32;%PATH% set PATH=%TOOLS%\tasm32;%PATH%
set TASMTABS=%TOOLS%\tasm32 set TASMTABS=%TOOLS%\tasm32
tasm -t80 -b -fFF FDU.asm FDU.com FDU.lst
tasm -t80 -b -fFF fdu.asm fdu.com fdu.lst
if errorlevel 1 goto :eof if errorlevel 1 goto :eof
copy /Y FDU.com ..\..\..\Binary\Apps\
copy /Y FDU.txt ..\..\..\Doc\
copy /Y fdu.com ..\..\..\Binary\Apps\
copy /Y fdu.txt ..\..\..\Doc\

4
Source/Apps/FDU/Makefile

@ -1,5 +1,5 @@
OBJECTS = FDU.com
DOCS = FDU.txt
OBJECTS = fdu.com
DOCS = fdu.txt
DEST = ../../../Binary/Apps DEST = ../../../Binary/Apps
DOCDEST = ../../../Doc DOCDEST = ../../../Doc
TOOLS = ../../../Tools TOOLS = ../../../Tools

16
Source/Apps/Tune/Makefile

@ -1,19 +1,19 @@
OBJECTS = Tune.com Tunezx.com Tunemsx.com
OBJECTS = tune.com tunezx.com tunemsx.com
DEST = ../../../Binary/Apps DEST = ../../../Binary/Apps
TOOLS = ../../../Tools TOOLS = ../../../Tools
include $(TOOLS)/Makefile.inc include $(TOOLS)/Makefile.inc
DEPS := Tune.asm $(shell find . -name '*.inc')
DEPS := tune.asm $(shell find . -name '*.inc')
Tune.com: $(DEPS)
$(TASM) -dWBW Tune.asm Tune.com Tune.lst
tune.com: $(DEPS)
$(TASM) -dWBW tune.asm tune.com tune.lst
Tunezx.com: $(DEPS)
$(TASM) -dZX Tune.asm Tunezx.com Tunezx.lst
tunezx.com: $(DEPS)
$(TASM) -dZX tune.asm tunezx.com tunezx.lst
Tunemsx.com: $(DEPS)
$(TASM) -dMSX Tune.asm Tunemsx.com Tunemsx.lst
tunemsx.com: $(DEPS)
$(TASM) -dMSX tune.asm tunemsx.com tunemsx.lst
all:: all::
mkdir -p $(DEST)/Tunes mkdir -p $(DEST)/Tunes

Loading…
Cancel
Save