Writing to a floppy disk via SoftPaq #5959
-
|
Hello, I am working on a Compaq Deskpro 486/33M which has no BIOS and requires creating a floppy-based configuration utility - links to the exe files for burning the utility are found here. I have an external floppy drive module, and a few 3.5" 1.44MB floppies. The floppy I am using is formatted to FAT via Windows 11. Unfortunately none of the exe files will run on Windows 11 (even in compatibility mode). In DOSBox and DOSBox-X however, the executable starts just fine and I can navigate the prompts. I put the executable I want to use (SP1999.exe) into The executable starts, and I follow through the prompts. When I am asked to Unfortunately, on DOSBox-X I get the error I'm wondering if any DOSBox wizards have a fix for this - assuming it is in fact an issue with the emulator and the software is not busted/I'm not using it wrong. I know I am able to write to the floppy in DOSBox, as |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
That is unlikely to work, when you mount the host floppy drive that way, it is really a folder mount and you cannot do low-level actions to it which undoubtedly the Compaq utility is trying to do. Instead, create a 1.44MB floppy image file with mount c C:\TOOLS
IMGMAKE disk.ima -t fd_1440
imgmount b disk.ima
SP1999.exe
exitYou now have a regular raw floppy image, that you need to write to the real floppy drive from the host OS. I'm not sure what the best way to do that is from a Windows host. Under Linux, I would just write it with |
Beta Was this translation helpful? Give feedback.
-
|
yes, create 4 disk images IMGMAKE disk1.ima -t fd_1440
IMGMAKE disk2.ima -t fd_1440
IMGMAKE disk3.ima -t fd_1440
IMGMAKE disk4.ima -t fd_1440then you can either; imgmount a disk1.ima disk2.ima disk3.ima disk4.imaAnd use the disk swap hotkey or corresponding menu item to swap between them. |
Beta Was this translation helpful? Give feedback.
yes, create 4 disk images
then you can either;
And use the disk swap hotkey or corresponding menu item to swap between them.
Or you can just load another disk image from the menus