diff --git a/Doc/ChangeLog.txt b/Doc/ChangeLog.txt index b5dc12ec..060105f6 100644 --- a/Doc/ChangeLog.txt +++ b/Doc/ChangeLog.txt @@ -1,7 +1,7 @@ Version 3.1.1 ------------- - WBW: Version bumped due to pervasive changes -- WBW: Preliminary support for hard disk partition support (backward compatible) +- WBW: Preliminary hard disk partition support (backward compatible) Version 3.1 ----------- diff --git a/Doc/RomWBW Applications.pdf b/Doc/RomWBW Applications.pdf index 88b84919..dcf863fc 100644 Binary files a/Doc/RomWBW Applications.pdf and b/Doc/RomWBW Applications.pdf differ diff --git a/Doc/RomWBW Architecture.pdf b/Doc/RomWBW Architecture.pdf index 84168f95..8a116e0a 100644 Binary files a/Doc/RomWBW Architecture.pdf and b/Doc/RomWBW Architecture.pdf differ diff --git a/Doc/RomWBW Disk Catalog.pdf b/Doc/RomWBW Disk Catalog.pdf index 34fa97e8..eb0583ed 100644 Binary files a/Doc/RomWBW Disk Catalog.pdf and b/Doc/RomWBW Disk Catalog.pdf differ diff --git a/Doc/RomWBW Getting Started.pdf b/Doc/RomWBW Getting Started.pdf index d147a2a1..65d14983 100644 Binary files a/Doc/RomWBW Getting Started.pdf and b/Doc/RomWBW Getting Started.pdf differ diff --git a/Makefile b/Makefile index 8253467c..65560c7d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ all: $(MAKE) --directory Tools/unix $(MAKE) --directory Source - $(MAKE) --directory Source/Images clean: $(MAKE) --directory Tools/unix clean diff --git a/ReadMe.md b/ReadMe.md index bbd5b46e..34710692 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -3,7 +3,7 @@ ## Z80/Z180 System Software Version 3.1 Pre-release -Thursday 23 April 2020 +Friday 8 May 2020 Wayne Warthen @@ -1137,8 +1137,8 @@ applications are no longer provided. driver. - Ed Brindley contributed some of the code that supports the RC2014 platform. - - Phil Summers contributed Forth and BASIC in ROM as well as a long - list of general code enhancements. + - Phil Summers contributed Forth and BASIC in ROM, the AY-3-8910 sound + driver as well as a long list of general code enhancements. - Phillip Stevens contributed support for FreeRTOS. - Curt Mayer contributed the Linux / MacOS build process. - UNA BIOS and FDISK80 are the products of John Coffman. diff --git a/ReadMe.txt b/ReadMe.txt index 27ad0aa6..601e8101 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -3,7 +3,7 @@ RomWBW Z80/Z180 System Software Version 3.1 Pre-release -Thursday 23 April 2020 +Friday 8 May 2020 Wayne Warthen wwarthen@gmail.com @@ -1169,8 +1169,8 @@ applications are no longer provided. driver. - Ed Brindley contributed some of the code that supports the RC2014 platform. -- Phil Summers contributed Forth and BASIC in ROM as well as a long - list of general code enhancements. +- Phil Summers contributed Forth and BASIC in ROM, the AY-3-8910 sound + driver as well as a long list of general code enhancements. - Phillip Stevens contributed support for FreeRTOS. - Curt Mayer contributed the Linux / MacOS build process. - UNA BIOS and FDISK80 are the products of John Coffman. diff --git a/Source/Doc/GettingStarted.md b/Source/Doc/GettingStarted.md index dada3943..cd6bc2da 100644 --- a/Source/Doc/GettingStarted.md +++ b/Source/Doc/GettingStarted.md @@ -1190,8 +1190,8 @@ these applications are no longer provided. driver. * Ed Brindley contributed some of the code that supports the RC2014 platform. -* Phil Summers contributed Forth and BASIC in ROM as well as a long -list of general code enhancements. +* Phil Summers contributed Forth and BASIC in ROM, the AY-3-8910 sound +driver as well as a long list of general code enhancements. * Phillip Stevens contributed support for FreeRTOS. * Curt Mayer contributed the Linux / MacOS build process. * UNA BIOS and FDISK80 are the products of John Coffman. diff --git a/Source/ver.inc b/Source/ver.inc index 3cb3dc77..783d72d7 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.3" +#DEFINE BIOSVER "3.1.1-pre.4" diff --git a/Source/ver.lib b/Source/ver.lib index 3c226412..450a4790 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.3" + db "3.1.1-pre.4" endm