Browse Source

Fix FAT Application API Call

FAT application had not been updated to reflect a change in the HBIOS Disk Device API call return data.  This is corrected in this check-in.  Related discussion in #368.
patch v3.4.0-dev.7
Wayne Warthen 2 years ago
parent
commit
bbc84f0c2d
  1. 3
      Source/Apps/FAT/ReadMe.txt
  2. BIN
      Source/Apps/FAT/fat.com
  3. 2
      Source/ver.inc
  4. 2
      Source/ver.lib

3
Source/Apps/FAT/ReadMe.txt

@ -1,7 +1,7 @@
RomWBW HBIOS CP/M FAT Utility ("FAT.COM")
Author: Wayne Warthen
Updated: 12-Apr-2021
Updated: 12-Oct-2023
Application to manipulate and exchange files with a FAT (DOS)
filesystem. Runs on any HBIOS hosted CP/M implementation.
@ -101,4 +101,5 @@ HISTORY:
11-Oct-2019: v0.9.7 (beta) fix FORMAT to use existing partition table entries
add attributes to directory listing
12-Apr-2021: v0.9.8 (beta) support CP/NET drives
12-Oct-2023: v0.9.9 (beta) handle updated HBIOS Disk Device call

BIN
Source/Apps/FAT/fat.com

Binary file not shown.

2
Source/ver.inc

@ -2,7 +2,7 @@
#DEFINE RMN 4
#DEFINE RUP 0
#DEFINE RTP 0
#DEFINE BIOSVER "3.4.0-dev.6"
#DEFINE BIOSVER "3.4.0-dev.7"
#define rmj RMJ
#define rmn RMN
#define rup RUP

2
Source/ver.lib

@ -3,5 +3,5 @@ rmn equ 4
rup equ 0
rtp equ 0
biosver macro
db "3.4.0-dev.6"
db "3.4.0-dev.7"
endm

Loading…
Cancel
Save