Skip to content

Commit

Permalink
Add FAT.COM to Standard ROM Disk
Browse files Browse the repository at this point in the history
- Added FAT.COM application to standard ROM Disk (ROM size >= 512K)
- Removed RMAC.COM and LINK.COM to make space for FAT.COM
  • Loading branch information
wwarthen committed Dec 30, 2023
1 parent 3529cda commit 17e3a95
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**RomWBW ReadMe** \
Version 3.4 \
Wayne Warthen ([[email protected]](mailto:[email protected])) \
27 Dec 2023
30 Dec 2023

# Overview

Expand Down
2 changes: 1 addition & 1 deletion ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RomWBW ReadMe
Wayne Warthen ([email protected])
27 Dec 2023
30 Dec 2023



Expand Down
7 changes: 6 additions & 1 deletion Source/Doc/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -3713,6 +3713,7 @@ them over any older versions of the app on your disk:
* TALK.COM
* RTC.COM
* TIMER.COM
* FAT.COM

For example: `B>COPY ASSIGN.COM C:`

Expand All @@ -3722,9 +3723,13 @@ system and then update all copies. These applications are found in
the Binary/Apps directory of the distribution and in all of the disk
images.

* FAT.COM
* TUNE.COM

The files normally contained on the standard ROM Disk is based on a 512K
ROM. If your system has a smaller size ROM, then not all of these
files will be included on your ROM Disk. You will need to copy them to
your system from the /Binary/Apps folder of the RomWBW distribution.

**WARNING**: If you run a RomWBW-specific application that is not
the appropriate for the version of RomWBW you are running, the
application will generate an error message and abort.
Expand Down
20 changes: 10 additions & 10 deletions Source/RomDsk/Build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,27 @@ set RomApps2=fdu format survey sysgen talk timer cpuspd

set RomApps=

copy NUL rom128_wbw.dat
copy NUL rom128_una.dat
copy NUL rom128_wbw.dat || exit /b
copy NUL rom128_una.dat || exit /b

:: MakeDisk <OutputFile> <ImageSize> <Format> <Directory> <Bios>

set RomApps=%RomApps1%

call :MakeDisk rom256_wbw wbw_rom256 ROM_256KB 0x20000 wbw
call :MakeDisk rom256_una wbw_rom256 ROM_256KB 0x20000 una
call :MakeDisk rom256_wbw wbw_rom256 ROM_256KB 0x20000 wbw || exit /b
call :MakeDisk rom256_una wbw_rom256 ROM_256KB 0x20000 una || exit /b

set RomApps=%RomApps1% %RomApps2%

call :MakeDisk rom512_wbw wbw_rom512 ROM_512KB 0x60000 wbw
call :MakeDisk rom512_una wbw_rom512 ROM_512KB 0x60000 una
call :MakeDisk rom512_wbw wbw_rom512 ROM_512KB 0x60000 wbw || exit /b
call :MakeDisk rom512_una wbw_rom512 ROM_512KB 0x60000 una || exit /b

call :MakeDisk rom1024_wbw wbw_rom1024 ROM_1024KB 0xE0000 wbw
call :MakeDisk rom1024_una wbw_rom1024 ROM_1024KB 0xE0000 una
call :MakeDisk rom1024_wbw wbw_rom1024 ROM_1024KB 0xE0000 wbw || exit /b
call :MakeDisk rom1024_una wbw_rom1024 ROM_1024KB 0xE0000 una || exit /b

call :MakeDisk ram512_wbw wbw_ram512 RAM_512KB 0x40000 wbw
call :MakeDisk ram512_wbw wbw_ram512 RAM_512KB 0x40000 wbw || exit /b

call :MakeDisk ram1024_wbw wbw_ram1024 RAM_1024KB 0xC0000 wbw
call :MakeDisk ram1024_wbw wbw_ram1024 RAM_1024KB 0xC0000 wbw || exit /b

goto :eof

Expand Down
Binary file added Source/RomDsk/ROM_512KB/FAT.COM
Binary file not shown.
Binary file removed Source/RomDsk/ROM_512KB/LINK.COM
Binary file not shown.
Binary file removed Source/RomDsk/ROM_512KB/RMAC.COM
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/ver.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#DEFINE RMN 4
#DEFINE RUP 0
#DEFINE RTP 0
#DEFINE BIOSVER "3.4.0-rc.2"
#DEFINE BIOSVER "3.4.0-rc.3"
#define rmj RMJ
#define rmn RMN
#define rup RUP
Expand Down
2 changes: 1 addition & 1 deletion Source/ver.lib
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ rmn equ 4
rup equ 0
rtp equ 0
biosver macro
db "3.4.0-rc.2"
db "3.4.0-rc.3"
endm

0 comments on commit 17e3a95

Please sign in to comment.