b1ackmai1er
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with
19 additions and
11 deletions
-
Binary/Makefile
-
Doc/ChangeLog.txt
-
Source/Images/d_bp.txt
-
Source/Images/d_zpm3.txt
-
Source/TastyBasic/src/Build.cmd
-
Source/TastyBasic/src/Makefile
-
Source/ver.inc
-
Source/ver.lib
|
|
@ -5,4 +5,4 @@ SUBDIRS = Apps CPM3 ZPM3 |
|
|
include $(TOOLS)/Makefile.inc |
|
|
include $(TOOLS)/Makefile.inc |
|
|
|
|
|
|
|
|
clobber:: |
|
|
clobber:: |
|
|
@rm -f *.bin *.com *.img *.rom *.upd *.hex *.pdf *.log *.eeprom *.dat |
|
|
|
|
|
|
|
|
@rm -f *.bin *.com *.img *.rom *.upd *.hex *.pdf *.log *.eeprom *.dat |
|
|
@ -54,7 +54,10 @@ Version 3.1.1 |
|
|
- WBW: Add interrupt receive support to UART driver |
|
|
- WBW: Add interrupt receive support to UART driver |
|
|
- PMS: Add XModem transfer within Debug Monitor |
|
|
- PMS: Add XModem transfer within Debug Monitor |
|
|
- PMS & AJL: Add DMAMON test application |
|
|
- PMS & AJL: Add DMAMON test application |
|
|
|
|
|
- PMS: Add ZMP adaptation |
|
|
- LWN: Substantial BPBIOS cleanup |
|
|
- LWN: Substantial BPBIOS cleanup |
|
|
|
|
|
- AJL: Add ZMD adaptation |
|
|
|
|
|
- D?T: Substantial update to TastyBasic incuding a .COM executable |
|
|
|
|
|
|
|
|
Version 3.1 |
|
|
Version 3.1 |
|
|
----------- |
|
|
----------- |
|
|
|
|
|
@ -21,7 +21,7 @@ |
|
|
../../Binary/Apps/syscopy.com 15: |
|
|
../../Binary/Apps/syscopy.com 15: |
|
|
../../Binary/Apps/sysgen.com 15: |
|
|
../../Binary/Apps/sysgen.com 15: |
|
|
../../Binary/Apps/talk.com 15: |
|
|
../../Binary/Apps/talk.com 15: |
|
|
../../Binary/Apps/tbasic.com 0: |
|
|
|
|
|
|
|
|
../../Binary/Apps/tbasic.com 15: |
|
|
../../Binary/Apps/timer.com 15: |
|
|
../../Binary/Apps/timer.com 15: |
|
|
../../Binary/Apps/tune.com 15: |
|
|
../../Binary/Apps/tune.com 15: |
|
|
../../Binary/Apps/xm.com 15: |
|
|
../../Binary/Apps/xm.com 15: |
|
|
|
|
|
@ -32,7 +32,7 @@ |
|
|
../../Binary/Apps/syscopy.com 15: |
|
|
../../Binary/Apps/syscopy.com 15: |
|
|
../../Binary/Apps/sysgen.com 15: |
|
|
../../Binary/Apps/sysgen.com 15: |
|
|
../../Binary/Apps/talk.com 15: |
|
|
../../Binary/Apps/talk.com 15: |
|
|
../../Binary/Apps/tbasic.com 0: |
|
|
|
|
|
|
|
|
../../Binary/Apps/tbasic.com 15: |
|
|
../../Binary/Apps/timer.com 15: |
|
|
../../Binary/Apps/timer.com 15: |
|
|
../../Binary/Apps/tune.com 15: |
|
|
../../Binary/Apps/tune.com 15: |
|
|
../../Binary/Apps/xm.com 15: |
|
|
../../Binary/Apps/xm.com 15: |
|
|
|
|
|
@ -7,7 +7,10 @@ set PATH=%TOOLS%\tasm32;%PATH% |
|
|
|
|
|
|
|
|
set TASMTABS=%TOOLS%\tasm32 |
|
|
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 |
|
|
copy /b /v tastybasic.com ..\..\..\Binary\Apps\tbasic.com |
|
|
|
|
|
@ -2,15 +2,17 @@ OBJECTS = tastybasic.bin tbasic.com |
|
|
TOOLS = ../../../Tools |
|
|
TOOLS = ../../../Tools |
|
|
OTHERS = *.com |
|
|
OTHERS = *.com |
|
|
APPDIR=../../../Binary/Apps |
|
|
APPDIR=../../../Binary/Apps |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include $(TOOLS)/Makefile.inc |
|
|
include $(TOOLS)/Makefile.inc |
|
|
|
|
|
|
|
|
|
|
|
# git@github.com:dimitrit/tastybasic.git; commit a86d7e7; (HEAD -> master, tag: v0.3.0)
|
|
|
|
|
|
VER=\"v0.3.0\" |
|
|
USETASM=1 |
|
|
USETASM=1 |
|
|
|
|
|
|
|
|
tastybasic.bin: TASMFLAGS=-dROMWBW |
|
|
|
|
|
|
|
|
tastybasic.bin: TASMFLAGS=-dROMWBW -d"VERSION $(VER)" |
|
|
|
|
|
|
|
|
tastybasic.com: TASMFLAGS=-dCPM |
|
|
|
|
|
|
|
|
tastybasic.com: TASMFLAGS=-dCPM -d"VERSION $(VER)" |
|
|
|
|
|
|
|
|
tbasic.com : tastybasic.com |
|
|
tbasic.com : tastybasic.com |
|
|
cp $< $@ |
|
|
cp $< $@ |
|
|
cp $$($(CASEFN) $@) $(APPDIR) |
|
|
|
|
|
|
|
|
cp $$($(CASEFN) $@) $(APPDIR) |
|
|
|
|
|
@ -2,4 +2,4 @@ |
|
|
#DEFINE RMN 1 |
|
|
#DEFINE RMN 1 |
|
|
#DEFINE RUP 1 |
|
|
#DEFINE RUP 1 |
|
|
#DEFINE RTP 0 |
|
|
#DEFINE RTP 0 |
|
|
#DEFINE BIOSVER "3.1.1-pre.135" |
|
|
|
|
|
|
|
|
#DEFINE BIOSVER "3.1.1-pre.136" |
|
|
|
|
|
@ -3,5 +3,5 @@ rmn equ 1 |
|
|
rup equ 1 |
|
|
rup equ 1 |
|
|
rtp equ 0 |
|
|
rtp equ 0 |
|
|
biosver macro |
|
|
biosver macro |
|
|
db "3.1.1-pre.135" |
|
|
|
|
|
|
|
|
db "3.1.1-pre.136" |
|
|
endm |
|
|
endm |
|
|
|