diff --git a/Binary/Makefile b/Binary/Makefile index 514dd41b..ea7a0d79 100644 --- a/Binary/Makefile +++ b/Binary/Makefile @@ -4,10 +4,5 @@ SUBDIRS = Apps CPM3 ZPM3 include $(TOOLS)/Makefile.inc -clean:: - @rm -f *.bin *.com *.img *.rom *.upd - -clobber:: clean - @rm -f *.hex *.pdf *.log *.eeprom *.dat - -.PHONEY: clean clobber +clobber:: + @rm -f *.bin *.com *.img *.rom *.upd *.hex *.pdf *.log *.eeprom *.dat \ No newline at end of file diff --git a/Doc/ChangeLog.txt b/Doc/ChangeLog.txt index c2cfc6a6..e7d42423 100644 --- a/Doc/ChangeLog.txt +++ b/Doc/ChangeLog.txt @@ -54,7 +54,10 @@ Version 3.1.1 - WBW: Add interrupt receive support to UART driver - PMS: Add XModem transfer within Debug Monitor - PMS & AJL: Add DMAMON test application +- PMS: Add ZMP adaptation - LWN: Substantial BPBIOS cleanup +- AJL: Add ZMD adaptation +- D?T: Substantial update to TastyBasic incuding a .COM executable Version 3.1 ----------- diff --git a/Source/Images/d_bp.txt b/Source/Images/d_bp.txt index dd4f248c..c613ebc7 100644 --- a/Source/Images/d_bp.txt +++ b/Source/Images/d_bp.txt @@ -21,7 +21,7 @@ ../../Binary/Apps/syscopy.com 15: ../../Binary/Apps/sysgen.com 15: ../../Binary/Apps/talk.com 15: -../../Binary/Apps/tbasic.com 0: +../../Binary/Apps/tbasic.com 15: ../../Binary/Apps/timer.com 15: ../../Binary/Apps/tune.com 15: ../../Binary/Apps/xm.com 15: diff --git a/Source/Images/d_zpm3.txt b/Source/Images/d_zpm3.txt index ebb97155..878159bf 100644 --- a/Source/Images/d_zpm3.txt +++ b/Source/Images/d_zpm3.txt @@ -32,7 +32,7 @@ ../../Binary/Apps/syscopy.com 15: ../../Binary/Apps/sysgen.com 15: ../../Binary/Apps/talk.com 15: -../../Binary/Apps/tbasic.com 0: +../../Binary/Apps/tbasic.com 15: ../../Binary/Apps/timer.com 15: ../../Binary/Apps/tune.com 15: ../../Binary/Apps/xm.com 15: diff --git a/Source/TastyBasic/src/Build.cmd b/Source/TastyBasic/src/Build.cmd index 9ee76528..aa526159 100644 --- a/Source/TastyBasic/src/Build.cmd +++ b/Source/TastyBasic/src/Build.cmd @@ -7,7 +7,10 @@ set PATH=%TOOLS%\tasm32;%PATH% set TASMTABS=%TOOLS%\tasm32 -tasm -80 -g3 -fFF -dROMWBW tastybasic.asm tastybasic.bin tastybasic.bin.lst -tasm -80 -g3 -fFF -dCPM tastybasic.asm tastybasic.com tastybasic.com.lst +# git@github.com:dimitrit/tastybasic.git; commit a86d7e7; (HEAD -> master, tag: v0.3.0) +set VER=v0.3.0 + +tasm -80 -g3 -fFF -dROMWBW -d"VERSION \"%VER%\"" tastybasic.asm tastybasic.bin tastybasic.bin.lst +tasm -80 -g3 -fFF -dCPM -d"VERSION \"%VER%\"" tastybasic.asm tastybasic.com tastybasic.com.lst copy /b /v tastybasic.com ..\..\..\Binary\Apps\tbasic.com diff --git a/Source/ver.inc b/Source/ver.inc index efa020d8..6d15aae4 100644 --- a/Source/ver.inc +++ b/Source/ver.inc @@ -2,4 +2,4 @@ #DEFINE RMN 1 #DEFINE RUP 1 #DEFINE RTP 0 -#DEFINE BIOSVER "3.1.1-pre.135" +#DEFINE BIOSVER "3.1.1-pre.136" diff --git a/Source/ver.lib b/Source/ver.lib index a927559d..f196db79 100644 --- a/Source/ver.lib +++ b/Source/ver.lib @@ -3,5 +3,5 @@ rmn equ 1 rup equ 1 rtp equ 0 biosver macro - db "3.1.1-pre.135" + db "3.1.1-pre.136" endm