diff --git a/Doc/ChangeLog.txt b/Doc/ChangeLog.txt index 0fb3666e..64140634 100644 --- a/Doc/ChangeLog.txt +++ b/Doc/ChangeLog.txt @@ -37,6 +37,8 @@ Version 2.9.2 - S?G: Added support for BQ4845 RTC (bqrtc.asm) - PMS: Added 80x30 video mode to VGA3 driver - PMS: Added 80x43 video mode +- PMS: Added font compression option +- PMS: Added a "safe mode" startup w/ minimal device support Version 2.9.1 ------------- diff --git a/ReadMe.txt b/ReadMe.txt index ce7088c4..82bb4378 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -7,7 +7,7 @@ *********************************************************************** Wayne Warthen (wwarthen@gmail.com) -Version 2.9.2-pre.25, 2020-01-06 +Version 2.9.2-pre.26, 2020-01-17 https://www.retrobrewcomputers.org/ RomWBW is a ROM-based implementation of CP/M-80 2.2 and Z-System for diff --git a/Source/BL/ver.inc b/Source/BL/ver.inc index ed96d795..e45e1d81 100644 --- a/Source/BL/ver.inc +++ b/Source/BL/ver.inc @@ -2,4 +2,4 @@ #DEFINE RMN 9 #DEFINE RUP 2 #DEFINE RTP 0 -#DEFINE BIOSVER "2.9.2-pre.25" +#DEFINE BIOSVER "2.9.2-pre.26" diff --git a/Source/CBIOS/ver.inc b/Source/CBIOS/ver.inc index ed96d795..e45e1d81 100644 --- a/Source/CBIOS/ver.inc +++ b/Source/CBIOS/ver.inc @@ -2,4 +2,4 @@ #DEFINE RMN 9 #DEFINE RUP 2 #DEFINE RTP 0 -#DEFINE BIOSVER "2.9.2-pre.25" +#DEFINE BIOSVER "2.9.2-pre.26" diff --git a/Source/CPM3/ver.inc b/Source/CPM3/ver.inc index 6fea63ae..d7963369 100644 --- a/Source/CPM3/ver.inc +++ b/Source/CPM3/ver.inc @@ -3,5 +3,5 @@ rmn equ 9 rup equ 2 rtp equ 0 biosver macro - db "2.9.2-pre.25" + db "2.9.2-pre.26" endm diff --git a/Source/Fonts/fonts.txt b/Source/Fonts/fonts.txt index ca44c0f7..2f720b44 100644 --- a/Source/Fonts/fonts.txt +++ b/Source/Fonts/fonts.txt @@ -19,7 +19,7 @@ To reduce the size of the HBIOS image, fonts can be compressed by using the USEZ Use the following in your custom configuration to turn on font compression: -USEZLSA2 .SET TRUE +USELZSA2 .SET TRUE Compressed fonts are created using lzsa utility. diff --git a/Source/HBIOS/ver.inc b/Source/HBIOS/ver.inc index ed96d795..e45e1d81 100644 --- a/Source/HBIOS/ver.inc +++ b/Source/HBIOS/ver.inc @@ -2,4 +2,4 @@ #DEFINE RMN 9 #DEFINE RUP 2 #DEFINE RTP 0 -#DEFINE BIOSVER "2.9.2-pre.25" +#DEFINE BIOSVER "2.9.2-pre.26"