Browse Source

Test Apps Linux Build

- Complete the reorganization of the test apps by implementing Makefile changes.
patch
Wayne Warthen 4 years ago
parent
commit
cd37599444
  1. 2
      Binary/Apps/Clean.cmd
  2. 3
      Binary/Apps/Makefile
  3. 4
      Binary/Apps/Test/Clean.cmd
  4. 7
      Binary/Apps/Test/Makefile
  5. 16
      Binary/Apps/Test/ReadMe.txt
  6. 1
      Doc/ChangeLog.txt
  7. 3
      Source/Apps/Build.cmd
  8. 3
      Source/Apps/Clean.cmd
  9. 2
      Source/Apps/Makefile
  10. 5
      Source/Apps/Test/Build.cmd
  11. 5
      Source/Apps/Test/Clean.cmd
  12. 2
      Source/Apps/Test/DMAmon/Build.cmd
  13. 0
      Source/Apps/Test/DMAmon/Clean.cmd
  14. 0
      Source/Apps/Test/DMAmon/MBC_std.asm
  15. 7
      Source/Apps/Test/DMAmon/Makefile
  16. 0
      Source/Apps/Test/DMAmon/Readme.txt
  17. 0
      Source/Apps/Test/DMAmon/build.inc
  18. 0
      Source/Apps/Test/DMAmon/cfg_mbc.asm
  19. 2
      Source/Apps/Test/DMAmon/dmamon.asm
  20. 0
      Source/Apps/Test/DMAmon/dmamon.bat
  21. 0
      Source/Apps/Test/DMAmon/dmamon.sh
  22. 0
      Source/Apps/Test/DMAmon/hbios.inc
  23. 0
      Source/Apps/Test/DMAmon/std.asm
  24. 0
      Source/Apps/Test/DMAmon/util.asm
  25. 0
      Source/Apps/Test/DMAmon/ver.inc
  26. 6
      Source/Apps/Test/I2C/Build.cmd
  27. 0
      Source/Apps/Test/I2C/Clean.cmd
  28. 4
      Source/Apps/Test/I2C/Makefile
  29. 0
      Source/Apps/Test/I2C/i2ccpm.inc
  30. 0
      Source/Apps/Test/I2C/i2clcd.asm
  31. 0
      Source/Apps/Test/I2C/i2cscan.asm
  32. 0
      Source/Apps/Test/I2C/pcfi2c.inc
  33. 0
      Source/Apps/Test/I2C/rtcds7.asm
  34. 0
      Source/Apps/Test/MBC/button2.asm
  35. 0
      Source/Apps/Test/MBC/leds2.asm
  36. 0
      Source/Apps/Test/MBC/tone3.asm
  37. 6
      Source/Apps/Test/Makefile
  38. 2
      Source/Apps/Test/inttest/Build.cmd
  39. 0
      Source/Apps/Test/inttest/Clean.cmd
  40. 7
      Source/Apps/Test/inttest/Makefile
  41. 0
      Source/Apps/Test/inttest/inttest.asm
  42. 2
      Source/Apps/Test/ppidetst/Build.cmd
  43. 0
      Source/Apps/Test/ppidetst/Clean.cmd
  44. 7
      Source/Apps/Test/ppidetst/Makefile
  45. 0
      Source/Apps/Test/ppidetst/ppidetst.asm
  46. 2
      Source/Apps/Test/ramtest/Build.cmd
  47. 0
      Source/Apps/Test/ramtest/Clean.cmd
  48. 6
      Source/Apps/Test/ramtest/Makefile
  49. 0
      Source/Apps/Test/ramtest/dbgmon.asm
  50. 0
      Source/Apps/Test/ramtest/loader.asm
  51. 0
      Source/Apps/Test/ramtest/ramtest.bat
  52. 0
      Source/Apps/Test/ramtest/ramtest.sh
  53. 2
      Source/Apps/Test/tstdskng/Build.cmd
  54. 0
      Source/Apps/Test/tstdskng/Clean.cmd
  55. 7
      Source/Apps/Test/tstdskng/Makefile
  56. 0
      Source/Apps/Test/tstdskng/tstdskng.asm
  57. 17
      Source/Images/d_bp.txt
  58. 16
      Source/Images/d_cpm22.txt
  59. 17
      Source/Images/d_cpm3.txt
  60. 16
      Source/Images/d_nzcom.txt
  61. 17
      Source/Images/d_zpm3.txt
  62. 16
      Source/Images/d_zsdos.txt
  63. 2
      Source/RomDsk/Build.cmd
  64. 2
      Source/RomDsk/Makefile
  65. 2
      Source/ver.inc
  66. 2
      Source/ver.lib

2
Binary/Apps/Clean.cmd

@ -8,3 +8,5 @@ if exist *.doc del *.doc
if exist *.hlp del *.hlp
if exist Tunes\*.pt? del Tunes\*.pt?
if exist Tunes\*.mym del Tunes\*.mym
pushd Test && call Clean || exit /b 1 & popd

3
Binary/Apps/Makefile

@ -1,5 +1,6 @@
TOOLS = ../../Tools
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.com Tunes/*)
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.com)
SUBDIRS = Test
include $(TOOLS)/Makefile.inc

4
Binary/Apps/Test/Clean.cmd

@ -0,0 +1,4 @@
@echo off
setlocal
if exist *.com del *.com

7
Binary/Apps/Test/Makefile

@ -0,0 +1,7 @@
TOOLS = ../../../Tools
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.com)
include $(TOOLS)/Makefile.inc
clobber::
@rm -f *.com

16
Binary/Apps/Test/ReadMe.txt

@ -0,0 +1,16 @@
***********************************************************************
*** ***
*** R o m W B W ***
*** ***
*** Z80/Z180 System Software ***
*** ***
***********************************************************************
This directory contains various hardware test application files that
are specific to RomWBW. The source for these applications is found
in the Source\Apps\Test directory of the distribution.
These files are included on the pre-built disk images in user area 2.
N.B., these files may be specific to certain hardware. They should
be used as directred by the instructions for your specific hardware.

1
Doc/ChangeLog.txt

@ -53,6 +53,7 @@ Version 3.1.1
- WBW: Add support for LINC sound card
- WBW: Add interrupt receive support to UART driver
- PMS: Add XModem transfer within Debug Monitor
- PMS & AJL: Add DMAMON test application
Version 3.1
-----------

3
Source/Apps/Build.cmd

@ -30,8 +30,7 @@ pushd XM && call Build || exit /b & popd
pushd FDU && call Build || exit /b & popd
pushd Tune && call Build || exit /b & popd
pushd FAT && call Build || exit /b & popd
pushd I2C && call Build || exit /b & popd
pushd TEST && call Build || exit /b & popd
pushd Test && call Build || exit /b & popd
pushd ZMP && call Build || exit /b & popd
copy *.com %APPBIN%\ || exit /b

3
Source/Apps/Clean.cmd

@ -11,6 +11,5 @@ pushd XM && call Clean || exit /b 1 & popd
pushd FDU && call Clean || exit /b 1 & popd
pushd Tune && call Clean || exit /b 1 & popd
pushd FAT && call Clean || exit /b 1 & popd
pushd I2C && call Clean || exit /b 1 & popd
pushd TEST && call Clean || exit /b 1 & popd
pushd Test && call Clean || exit /b 1 & popd
pushd ZMP && call Clean || exit /b 1 & popd

2
Source/Apps/Makefile

@ -1,7 +1,7 @@
OBJECTS = sysgen.com survey.com \
syscopy.com assign.com format.com talk.com mode.com rtc.com \
timer.com rtchb.com
SUBDIRS = XM FDU FAT Tune I2C TEST ZMP
SUBDIRS = XM FDU FAT Tune Test ZMP
DEST = ../../Binary/Apps
TOOLS =../../Tools

5
Source/Apps/TEST/Build.cmd → Source/Apps/Test/Build.cmd

@ -13,10 +13,11 @@ set ZXLIBDIR=%TOOLS%/cpm/lib/
set ZXINCDIR=%TOOLS%/cpm/include/
pushd DMAmon && call Build || exit /b & popd
pushd dskyng && call Build || exit /b & popd
pushd inttst && call Build || exit /b & popd
pushd tstdskng && call Build || exit /b & popd
pushd inttest && call Build || exit /b & popd
pushd ppidetst && call Build || exit /b & popd
pushd ramtest && call Build || exit /b & popd
pushd I2C && call Build || exit /b & popd
goto :eof

5
Source/Apps/TEST/Clean.cmd → Source/Apps/Test/Clean.cmd

@ -8,7 +8,8 @@ if exist *.hex del *.hex
if exist *.prn del *.prn
pushd DMAmon && call Clean || exit /b 1 & popd
pushd dskyng && call Clean || exit /b 1 & popd
pushd inttst && call Clean || exit /b 1 & popd
pushd tstdskng && call Clean || exit /b 1 & popd
pushd inttest && call Clean || exit /b 1 & popd
pushd ppidetst && call Clean || exit /b 1 & popd
pushd ramtest && call Clean || exit /b 1 & popd
pushd I2C && call Clean || exit /b 1 & popd

2
Source/Apps/TEST/DMAmon/Build.cmd → Source/Apps/Test/DMAmon/Build.cmd

@ -7,5 +7,5 @@ set TASMTABS=%TOOLS%\tasm32
tasm -t180 -g3 -fFF dmamon.asm dmamon.com dmamon.lst || exit /b
copy /Y dmamon.com ..\..\..\..\Binary\Apps\ || exit /b
copy /Y dmamon.com ..\..\..\..\Binary\Apps\Test\ || exit /b

0
Source/Apps/TEST/DMAmon/Clean.cmd → Source/Apps/Test/DMAmon/Clean.cmd

0
Source/Apps/TEST/DMAmon/MBC_std.asm → Source/Apps/Test/DMAmon/MBC_std.asm

7
Source/Apps/Test/DMAmon/Makefile

@ -0,0 +1,7 @@
OBJECTS = dmamon.com
DEST = ../../../../Binary/Apps/Test
TOOLS =../../../../Tools
USETASM=1
include $(TOOLS)/Makefile.inc

0
Source/Apps/TEST/DMAmon/Readme.txt → Source/Apps/Test/DMAmon/Readme.txt

0
Source/Apps/TEST/DMAmon/build.inc → Source/Apps/Test/DMAmon/build.inc

0
Source/Apps/TEST/DMAmon/cfg_mbc.asm → Source/Apps/Test/DMAmon/cfg_mbc.asm

2
Source/Apps/TEST/DMAmon/dmamon.asm → Source/Apps/Test/DMAmon/dmamon.asm

@ -95,7 +95,7 @@ DMATST_D:
;
DMATST_Y:
call PRTSTRD
.db "\n\r\Y READY\n\r$"
.db "\n\rY READY\n\r$"
; CALL
JP MENULP
;

0
Source/Apps/TEST/DMAmon/dmamon.bat → Source/Apps/Test/DMAmon/dmamon.bat

0
Source/Apps/TEST/DMAmon/dmamon.sh → Source/Apps/Test/DMAmon/dmamon.sh

0
Source/Apps/TEST/DMAmon/hbios.inc → Source/Apps/Test/DMAmon/hbios.inc

0
Source/Apps/TEST/DMAmon/std.asm → Source/Apps/Test/DMAmon/std.asm

0
Source/Apps/TEST/DMAmon/util.asm → Source/Apps/Test/DMAmon/util.asm

0
Source/Apps/TEST/DMAmon/ver.inc → Source/Apps/Test/DMAmon/ver.inc

6
Source/Apps/I2C/Build.cmd → Source/Apps/Test/I2C/Build.cmd

@ -1,7 +1,7 @@
@echo off
setlocal
set TOOLS=../../../Tools
set TOOLS=../../../../Tools
set PATH=%TOOLS%\tasm32;%PATH%
set TASMTABS=%TOOLS%\tasm32
@ -9,5 +9,5 @@ tasm -t180 -g3 -fFF i2cscan.asm i2cscan.com i2cscan.lst || exit /b
tasm -t180 -g3 -fFF rtcds7.asm rtcds7.com rtcds7.lst || exit /b
tasm -t180 -g3 -fFF i2clcd.asm i2clcd.com i2clcd.lst || exit /b
copy /Y i2c*.com ..\..\..\Binary\Apps\ || exit /b
copy /Y rtcds7*.com ..\..\..\Binary\Apps\ || exit /b
copy /Y i2c*.com ..\..\..\..\Binary\Apps\Test\ || exit /b
copy /Y rtcds7*.com ..\..\..\..\Binary\Apps\Test\ || exit /b

0
Source/Apps/I2C/Clean.cmd → Source/Apps/Test/I2C/Clean.cmd

4
Source/Apps/I2C/Makefile → Source/Apps/Test/I2C/Makefile

@ -1,6 +1,6 @@
OBJECTS = i2cscan.com rtcds7.com i2clcd.com
DEST = ../../../Binary/Apps
TOOLS = ../../../Tools
DEST = ../../../../Binary/Apps/Test/
TOOLS = ../../../../Tools
USETASM=1
TASMFLAGS=-dWBW

0
Source/Apps/I2C/i2ccpm.inc → Source/Apps/Test/I2C/i2ccpm.inc

0
Source/Apps/I2C/i2clcd.asm → Source/Apps/Test/I2C/i2clcd.asm

0
Source/Apps/I2C/i2cscan.asm → Source/Apps/Test/I2C/i2cscan.asm

0
Source/Apps/I2C/pcfi2c.inc → Source/Apps/Test/I2C/pcfi2c.inc

0
Source/Apps/I2C/rtcds7.asm → Source/Apps/Test/I2C/rtcds7.asm

0
Source/Apps/TEST/MBC/button2.asm → Source/Apps/Test/MBC/button2.asm

0
Source/Apps/TEST/MBC/leds2.asm → Source/Apps/Test/MBC/leds2.asm

0
Source/Apps/TEST/MBC/tone3.asm → Source/Apps/Test/MBC/tone3.asm

6
Source/Apps/Test/Makefile

@ -0,0 +1,6 @@
OBJECTS =
SUBDIRS = DMAMon I2C inttest ppidetst ramtest tstdskng
DEST = ../../../Binary/Apps/Test
TOOLS =../../../Tools
include $(TOOLS)/Makefile.inc

2
Source/Apps/TEST/inttst/Build.cmd → Source/Apps/Test/inttest/Build.cmd

@ -7,5 +7,5 @@ set TASMTABS=%TOOLS%\tasm32
tasm -t180 -g3 -fFF inttest.asm inttest.com inttest.lst || exit /b
copy /Y inttest.com ..\..\..\..\Binary\Apps\ || exit /b
copy /Y inttest.com ..\..\..\..\Binary\Apps\Test\ || exit /b

0
Source/Apps/TEST/dskyng/Clean.cmd → Source/Apps/Test/inttest/Clean.cmd

7
Source/Apps/Test/inttest/Makefile

@ -0,0 +1,7 @@
OBJECTS = inttest.com
DEST = ../../../../Binary/Apps/Test
TOOLS =../../../../Tools
USETASM=1
include $(TOOLS)/Makefile.inc

0
Source/Apps/TEST/inttst/inttest.asm → Source/Apps/Test/inttest/inttest.asm

2
Source/Apps/TEST/ppidetst/Build.cmd → Source/Apps/Test/ppidetst/Build.cmd

@ -7,5 +7,5 @@ set TASMTABS=%TOOLS%\tasm32
tasm -t180 -g3 -fFF ppidetst.asm ppidetst.com ppidetst.lst || exit /b
copy /Y ppidetst.com ..\..\..\..\Binary\Apps\ || exit /b
copy /Y ppidetst.com ..\..\..\..\Binary\Apps\Test\ || exit /b

0
Source/Apps/TEST/inttst/Clean.cmd → Source/Apps/Test/ppidetst/Clean.cmd

7
Source/Apps/Test/ppidetst/Makefile

@ -0,0 +1,7 @@
OBJECTS = ppidetst.com
DEST = ../../../../Binary/Apps/Test
TOOLS =../../../../Tools
USETASM=1
include $(TOOLS)/Makefile.inc

0
Source/Apps/TEST/ppidetst/ppidetst.asm → Source/Apps/Test/ppidetst/ppidetst.asm

2
Source/Apps/TEST/ramtest/Build.cmd → Source/Apps/Test/ramtest/Build.cmd

@ -10,4 +10,4 @@ tasm -t80 -b -fFF dbgmon.asm dbgmon.bin dbgmon.lst || exit /b
copy /Y /b loader.bin+dbgmon.bin ramtest.com || exit /b
copy /Y ramtest.com ..\..\..\..\Binary\Apps\ || exit /b
copy /Y ramtest.com ..\..\..\..\Binary\Apps\Test\ || exit /b

0
Source/Apps/TEST/ramtest/Clean.cmd → Source/Apps/Test/ramtest/Clean.cmd

6
Source/Apps/TEST/ramtest/Makefile → Source/Apps/Test/ramtest/Makefile

@ -1,7 +1,7 @@
OBJECTS = ramtest.com
DEST = ../../../Binary/Apps
DOCDEST = ../../../Doc
TOOLS = ../../../Tools
DEST = ../../../../Binary/Apps/Test
DOCDEST = ../../../../Doc
TOOLS = ../../../../Tools
OTHERS = loader.bin dbgmon.bin
include $(TOOLS)/Makefile.inc

0
Source/Apps/TEST/ramtest/dbgmon.asm → Source/Apps/Test/ramtest/dbgmon.asm

0
Source/Apps/TEST/ramtest/loader.asm → Source/Apps/Test/ramtest/loader.asm

0
Source/Apps/TEST/ramtest/ramtest.bat → Source/Apps/Test/ramtest/ramtest.bat

0
Source/Apps/TEST/ramtest/ramtest.sh → Source/Apps/Test/ramtest/ramtest.sh

2
Source/Apps/TEST/dskyng/Build.cmd → Source/Apps/Test/tstdskng/Build.cmd

@ -7,5 +7,5 @@ set TASMTABS=%TOOLS%\tasm32
tasm -t180 -g3 -fFF tstdskng.asm tstdskng.com tstdskng.lst || exit /b
copy /Y tstdskng.com ..\..\..\..\Binary\Apps\ || exit /b
copy /Y tstdskng.com ..\..\..\..\Binary\Apps\Test\ || exit /b

0
Source/Apps/TEST/ppidetst/Clean.cmd → Source/Apps/Test/tstdskng/Clean.cmd

7
Source/Apps/Test/tstdskng/Makefile

@ -0,0 +1,7 @@
OBJECTS = tstdskng.com
DEST = ../../../../Binary/Apps/Test
TOOLS =../../../../Tools
USETASM=1
include $(TOOLS)/Makefile.inc

0
Source/Apps/TEST/dskyng/tstdskng.asm → Source/Apps/Test/tstdskng/tstdskng.asm

17
Source/Images/d_bp.txt

@ -16,7 +16,6 @@
../../Binary/Apps/fat.com 15:
../../Binary/Apps/fdu.com 15:
../../Binary/Apps/format.com 15:
../../Binary/Apps/inttest.com 15:
../../Binary/Apps/mode.com 15:
../../Binary/Apps/rtc.com 15:
../../Binary/Apps/survey.com 15:
@ -34,13 +33,15 @@
../../Binary/Apps/zminit.ovr 15:
../../Binary/Apps/zmconfig.ovr 15:
#
../../Binary/Apps/i2clcd.com 2:
../../Binary/Apps/i2cscan.com 2:
../../Binary/Apps/rtcds7.com 2:
../../Binary/Apps/rtchb.com 2:
../../Binary/Apps/ppidetst.com 2:
../../Binary/Apps/ramtest.com 2:
../../Binary/Apps/tstdskng.com 2:
#../../Binary/Apps/i2clcd.com 2:
#../../Binary/Apps/i2cscan.com 2:
#../../Binary/Apps/rtcds7.com 2:
#../../Binary/Apps/rtchb.com 2:
#../../Binary/Apps/ppidetst.com 2:
#../../Binary/Apps/ramtest.com 2:
#../../Binary/Apps/tstdskng.com 2:
../../Binary/Apps/Test/*.com 2:
Test/*.* 2:
#
# Add Tune sample files
#

16
Source/Images/d_cpm22.txt

@ -10,7 +10,6 @@ d_cpm22/ReadMe.txt 0:
../../Binary/Apps/fat.com 0:
../../Binary/Apps/fdu.com 0:
../../Binary/Apps/format.com 0:
../../Binary/Apps/inttest.com 0:
../../Binary/Apps/mode.com 0:
../../Binary/Apps/rtc.com 0:
../../Binary/Apps/survey.com 0:
@ -28,13 +27,14 @@ d_cpm22/ReadMe.txt 0:
../../Binary/Apps/zminit.ovr 0:
../../Binary/Apps/zmconfig.ovr 0:
#
../../Binary/Apps/i2clcd.com 2:
../../Binary/Apps/i2cscan.com 2:
../../Binary/Apps/rtcds7.com 2:
../../Binary/Apps/rtchb.com 2:
../../Binary/Apps/ppidetst.com 2:
../../Binary/Apps/ramtest.com 2:
../../Binary/Apps/tstdskng.com 2:
#../../Binary/Apps/i2clcd.com 2:
#../../Binary/Apps/i2cscan.com 2:
#../../Binary/Apps/rtcds7.com 2:
#../../Binary/Apps/rtchb.com 2:
#../../Binary/Apps/ppidetst.com 2:
#../../Binary/Apps/ramtest.com 2:
#../../Binary/Apps/tstdskng.com 2:
../../Binary/Apps/Test/*.com 2:
Test/*.* 2:
#
# Add Tune sample files

17
Source/Images/d_cpm3.txt

@ -26,7 +26,6 @@
../../Binary/Apps/fat.com 0:
../../Binary/Apps/fdu.com 0:
../../Binary/Apps/format.com 0:
../../Binary/Apps/inttest.com 0:
../../Binary/Apps/mode.com 0:
../../Binary/Apps/rtc.com 0:
../../Binary/Apps/survey.com 0:
@ -44,13 +43,15 @@
../../Binary/Apps/zminit.ovr 0:
../../Binary/Apps/zmconfig.ovr 0:
#
../../Binary/Apps/i2clcd.com 2:
../../Binary/Apps/i2cscan.com 2:
../../Binary/Apps/rtcds7.com 2:
../../Binary/Apps/rtchb.com 2:
../../Binary/Apps/ppidetst.com 2:
../../Binary/Apps/ramtest.com 2:
../../Binary/Apps/tstdskng.com 2:
#../../Binary/Apps/i2clcd.com 2:
#../../Binary/Apps/i2cscan.com 2:
#../../Binary/Apps/rtcds7.com 2:
#../../Binary/Apps/rtchb.com 2:
#../../Binary/Apps/ppidetst.com 2:
#../../Binary/Apps/ramtest.com 2:
#../../Binary/Apps/tstdskng.com 2:
../../Binary/Apps/Test/*.com 2:
Test/*.* 2:
#
# Add Tune sample files
#

16
Source/Images/d_nzcom.txt

@ -27,7 +27,6 @@ d_zsdos/u0/*.* 0:
../../Binary/Apps/fat.com 0:
../../Binary/Apps/fdu.com 0:
../../Binary/Apps/format.com 0:
../../Binary/Apps/inttest.com 0:
../../Binary/Apps/mode.com 0:
../../Binary/Apps/rtc.com 0:
../../Binary/Apps/survey.com 0:
@ -45,13 +44,14 @@ d_zsdos/u0/*.* 0:
../../Binary/Apps/zminit.ovr 0:
../../Binary/Apps/zmconfig.ovr 0:
#
../../Binary/Apps/i2clcd.com 2:
../../Binary/Apps/i2cscan.com 2:
../../Binary/Apps/rtcds7.com 2:
../../Binary/Apps/rtchb.com 2:
../../Binary/Apps/ppidetst.com 2:
../../Binary/Apps/ramtest.com 2:
../../Binary/Apps/tstdskng.com 2:
#../../Binary/Apps/i2clcd.com 2:
#../../Binary/Apps/i2cscan.com 2:
#../../Binary/Apps/rtcds7.com 2:
#../../Binary/Apps/rtchb.com 2:
#../../Binary/Apps/ppidetst.com 2:
#../../Binary/Apps/ramtest.com 2:
#../../Binary/Apps/tstdskng.com 2:
../../Binary/Apps/Test/*.com 2:
Test/*.* 2:
#
# Add Tune sample files

17
Source/Images/d_zpm3.txt

@ -25,7 +25,6 @@
../../Binary/Apps/fat.com 15:
../../Binary/Apps/fdu.com 15:
../../Binary/Apps/format.com 15:
../../Binary/Apps/inttest.com 15:
../../Binary/Apps/mode.com 15:
../../Binary/Apps/rtc.com 15:
../../Binary/Apps/survey.com 15:
@ -43,13 +42,15 @@
../../Binary/Apps/zminit.ovr 15:
../../Binary/Apps/zmconfig.ovr 15:
#
../../Binary/Apps/i2clcd.com 2:
../../Binary/Apps/i2cscan.com 2:
../../Binary/Apps/rtcds7.com 2:
../../Binary/Apps/rtchb.com 2:
../../Binary/Apps/ppidetst.com 2:
../../Binary/Apps/ramtest.com 2:
../../Binary/Apps/tstdskng.com 2:
#../../Binary/Apps/i2clcd.com 2:
#../../Binary/Apps/i2cscan.com 2:
#../../Binary/Apps/rtcds7.com 2:
#../../Binary/Apps/rtchb.com 2:
#../../Binary/Apps/ppidetst.com 2:
#../../Binary/Apps/ramtest.com 2:
#../../Binary/Apps/tstdskng.com 2:
../../Binary/Apps/Test/*.com 2:
Test/*.* 2:
#
# Add Tune sample files
#

16
Source/Images/d_zsdos.txt

@ -23,7 +23,6 @@ d_cpm22/u0/XSUB.COM 0:
../../Binary/Apps/fat.com 0:
../../Binary/Apps/fdu.com 0:
../../Binary/Apps/format.com 0:
../../Binary/Apps/inttest.com 0:
../../Binary/Apps/mode.com 0:
../../Binary/Apps/rtc.com 0:
../../Binary/Apps/survey.com 0:
@ -41,13 +40,14 @@ d_cpm22/u0/XSUB.COM 0:
../../Binary/Apps/zminit.ovr 0:
../../Binary/Apps/zmconfig.ovr 0:
#
../../Binary/Apps/i2clcd.com 2:
../../Binary/Apps/i2cscan.com 2:
../../Binary/Apps/rtcds7.com 2:
../../Binary/Apps/rtchb.com 2:
../../Binary/Apps/ppidetst.com 2:
../../Binary/Apps/ramtest.com 2:
../../Binary/Apps/tstdskng.com 2:
#../../Binary/Apps/i2clcd.com 2:
#../../Binary/Apps/i2cscan.com 2:
#../../Binary/Apps/rtcds7.com 2:
#../../Binary/Apps/rtchb.com 2:
#../../Binary/Apps/ppidetst.com 2:
#../../Binary/Apps/ramtest.com 2:
#../../Binary/Apps/tstdskng.com 2:
../../Binary/Apps/Test/*.com 2:
Test/*.* 2:
#
# Add Tune sample files

2
Source/RomDsk/Build.cmd

@ -12,7 +12,7 @@ set ZXLIBDIR=%TOOLS%/cpm/lib/
set ZXINCDIR=%TOOLS%/cpm/include/
set RomApps1=assign mode rtc syscopy xm
set RomApps2=fdu format survey sysgen talk timer inttest
set RomApps2=fdu format survey sysgen talk timer
::
:: Make all variants of the ROM Disk contents image. Three sizes are

2
Source/RomDsk/Makefile

@ -7,7 +7,7 @@ include $(TOOLS)/Makefile.inc
.SHELLFLAGS = -ce
ROMAPPS1 := assign mode rtc syscopy xm
ROMAPPS2 := fdu format survey sysgen talk timer inttest
ROMAPPS2 := fdu format survey sysgen talk timer
rom256_%.dat: ROMSIZ=256
rom512_%.dat: ROMSIZ=512

2
Source/ver.inc

@ -2,4 +2,4 @@
#DEFINE RMN 1
#DEFINE RUP 1
#DEFINE RTP 0
#DEFINE BIOSVER "3.1.1-pre.120"
#DEFINE BIOSVER "3.1.1-pre.121"

2
Source/ver.lib

@ -3,5 +3,5 @@ rmn equ 1
rup equ 1
rtp equ 0
biosver macro
db "3.1.1-pre.120"
db "3.1.1-pre.121"
endm

Loading…
Cancel
Save