Browse Source

Merge pull request #184 from wwarthen/dev

Dev
pull/206/head
b1ackmai1er 5 years ago
committed by GitHub
parent
commit
a473322a98
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Doc/ChangeLog.txt
  2. BIN
      Doc/RomWBW Applications.pdf
  3. BIN
      Doc/RomWBW Architecture.pdf
  4. BIN
      Doc/RomWBW Disk Catalog.pdf
  5. BIN
      Doc/RomWBW Getting Started.pdf
  6. 2
      ReadMe.md
  7. 2
      ReadMe.txt
  8. 2
      Source/Apps/Makefile
  9. 2
      Source/Apps/RTCds7.asm
  10. 2
      Source/Apps/RTChb.asm
  11. 2
      Source/HBIOS/Config/ZETA2_std.asm
  12. 1
      Source/HBIOS/ide.asm
  13. 1
      Source/HBIOS/ppide.asm
  14. 1
      Source/HBIOS/ppp.asm
  15. 1
      Source/HBIOS/prp.asm
  16. 1
      Source/HBIOS/sd.asm
  17. BIN
      Source/Images/Common/FIND.COM
  18. 2
      Source/ver.inc
  19. 2
      Source/ver.lib

2
Doc/ChangeLog.txt

@ -27,6 +27,8 @@ Version 3.1.1
- WBW: COPY.COM updated from v1.72 -> v1.73 throughout distribution
- D?M: CP/NET for CP/M 2.2 and CP/M 3 (requires MT011)
- D?M: SD driver fixes for MT011
- J?C: Added FIND application from Jay Cotton
- PMS: Preliminary support for I2C-based DS1307 clock
Version 3.1
-----------

BIN
Doc/RomWBW Applications.pdf

Binary file not shown.

BIN
Doc/RomWBW Architecture.pdf

Binary file not shown.

BIN
Doc/RomWBW Disk Catalog.pdf

Binary file not shown.

BIN
Doc/RomWBW Getting Started.pdf

Binary file not shown.

2
ReadMe.md

@ -3,7 +3,7 @@
## Z80/Z180 System Software
Version 3.1 Pre-release
Friday 15 January 2021
Saturday 13 March 2021
Wayne Warthen <wwarthen@gmail.com>

2
ReadMe.txt

@ -3,7 +3,7 @@ RomWBW
Z80/Z180 System Software
Version 3.1 Pre-release
Friday 15 January 2021
Saturday 13 March 2021
Wayne Warthen wwarthen@gmail.com

2
Source/Apps/Makefile

@ -1,6 +1,6 @@
OBJECTS = SysGen.com Survey.com \
SysCopy.com Assign.com Format.com Talk.com Mode.com RTC.com \
Timer.com IntTest.com rtcds7.com rtcds7.com
Timer.com IntTest.com RTCds7.com RTChb.com
OTHERS = *.hex *.com
SUBDIRS = XM FDU FAT Tune
DEST = ../../Binary/Apps

2
Source/Apps/rtcds7.asm → Source/Apps/RTCds7.asm

@ -701,5 +701,3 @@ BDO: PUSH HL
RET
;
.END


2
Source/Apps/rtchb.asm → Source/Apps/RTChb.asm

@ -216,5 +216,3 @@ BDO: PUSH HL
RET
;
.END


2
Source/HBIOS/Config/ZETA2_std.asm

@ -26,7 +26,7 @@
;
#include "cfg_zeta2.asm"
;
UARTCFG .SET UARTCFG | SER_RTS
;UARTCFG .SET UARTCFG | SER_RTS
;
CRTACT .SET TRUE ; ACTIVATE CRT (VDU,CVDU,PROPIO,ETC) AT STARTUP
;

1
Source/HBIOS/ide.asm

@ -1453,6 +1453,7 @@ IDE_PRTSTAT:
PUSH AF
PUSH DE
PUSH HL
LD A,(IY+IDE_STAT)
OR A
LD DE,IDE_STR_STOK
JR Z,IDE_PRTSTAT1

1
Source/HBIOS/ppide.asm

@ -1485,6 +1485,7 @@ PPIDE_PRTSTAT:
PUSH AF
PUSH DE
PUSH HL
LD A,(IY+PPIDE_STAT)
OR A
LD DE,PPIDE_STR_STOK
JR Z,PPIDE_PRTSTAT1

1
Source/HBIOS/ppp.asm

@ -1024,6 +1024,7 @@ PPPSD_PRTSTAT:
PUSH AF
PUSH DE
PUSH HL
LD A,(IY+PPPSD_STAT)
OR A
LD DE,PPPSD_STR_STOK
JR Z,PPPSD_PRTSTAT1

1
Source/HBIOS/prp.asm

@ -949,6 +949,7 @@ PRPSD_PRTSTAT:
PUSH AF
PUSH DE
PUSH HL
LD A,(IY+PRPSD_STAT)
OR A
LD DE,PRPSD_STR_STOK
JR Z,PRPSD_PRTSTAT1

1
Source/HBIOS/sd.asm

@ -2005,6 +2005,7 @@ SD_PRTSTAT:
PUSH AF
PUSH DE
PUSH HL
LD A,(IY+SD_STAT)
OR A
LD DE,SD_STR_STOK
JR Z,SD_PRTSTAT1

BIN
Source/Images/Common/FIND.COM

Binary file not shown.

2
Source/ver.inc

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

2
Source/ver.lib

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

Loading…
Cancel
Save