Shortened from Floppy Disk(FD) or Floppy Disk Drive(FDD). Mainly referring to FDD - a device for reading and writing data to a floppy disk.
2
votes
2answers
84 views
i386 Real mode - loading from floppy
I am approaching to x86 real mode coding, and I have found some example code here: http://www.nondot.org/sabre/os/files/Booting/nasmBoot.txt
The third example in that article loads a few sector of ...
1
vote
2answers
125 views
Calculating size of a theoretical text file
I'm writing an article about the Census Bureau's population projections through 2060, which consists of a 3.3 MB .csv file when uncompressed.
The file consists of 539,781 values, each of which is 5-7 ...
0
votes
1answer
432 views
Correctly compiling and linking multiple asm files into a .vfd - for Oracle VM?
Lately I've been wanting to get into assembly coding, just to have some experience under my belt. I decided to look into it and was getting some good results(though its simple asm), however everything ...
0
votes
2answers
122 views
In Windows, can floppy disk drives be assigned to drive letters other than A: and B:?
I'm developing a program for Windows which partly works with floppy disk drives. If I want to list the available drives on the system, I know I can use QueryDosDevice. Right now, I'm using it to check ...
1
vote
1answer
1k views
create a virtual floppy image without mount?
There are a lot of posts to show to create a virtual floppy image file as a super user or users can run sudo command. The basic steps are:
create empty 1.44MB image file by dd command
format the ...
1
vote
2answers
565 views
Virtual Floppy drive in Linux
I was playing around with an OS-development tutorial here. However, as it is based on Windows as the development platform, I was wondering if there is an equivalent software (or some way) to have a ...
0
votes
1answer
243 views
How to read blocks from a floppy with sectors?
I need to read a floppy from a pre OS state and I have a function to read, but it cannot seem to read past the 4th sector...
void get_block(blk, buf) int blk; char buf[]
{
int cyl, head, sector;
...
2
votes
2answers
168 views
Are A and B drives reserved by Windows?
I am doing a hard disk scan in my program, and I remember the bad old days when scanning B drive would freeze my machine. Can I skip A and B drives for those users that still have floppies? Are A or B ...
1
vote
1answer
296 views
How to fix 'LOCK prefix unallowed (op1=0x53, attr=0x0, mod=0x0, nnn=0)'?
My simple code:
[ORG 0x7C00]
MOV AH,0x02 ;Using the function of reading floppy
MOV AL,0x01 ;The number of sectors to be read is 1.
MOV CH,0x00 ;Only read 0 track
...
1
vote
0answers
351 views
How to eject a Virtual Floppy drive of a Virtual Machine in Hyper-V programmatically using WMI and C#?
I am trying to eject/remove a loaded *virtual floppy drive* (VFD) of virtual machine in Hyper-V using Hyper-V WMI API and VB.Net/C#.
I perform this operation when Virtual Machine is turned of but i ...
1
vote
1answer
538 views
Loading a floppy disk image with a boot binary
I've created a small assembly binary to boot from a floppy disk (ideally), but I can't work out how to actually 'put' the binary onto the disk so that it is bootable. I'd rather use a floppy disk ...
4
votes
2answers
635 views
Floppy noise in C# WMI - Win32_LogicalDisk Class
I am trying to track USB device insertions and CD/DVD insertions on Windows by using WMI. However when I use Win32_LogicalDisk class to track those events, floppy starts to make noise.
My queries are ...
0
votes
2answers
934 views
How to read FAT Table in Assembly Language
NC - Norton Commander
I should write a program like NC.
I need to access Fat Table in Assembly to show files and directories in my program.
Does anybody know how I can access Fat in assembly( both ...
0
votes
2answers
196 views
Question about the bootloader
I am following the brokenthorn operating development series to study about bootloader. In this page , these are the three line of code :
bits 16 ; We are still in 16 bit Real Mode
org 0x7c00 ...
3
votes
2answers
199 views
Explanation of assembly code
I have started to learn assembly. I came across these lines.
;*************************************************;
; OEM Parameter block / BIOS Parameter Block
...
0
votes
1answer
396 views
Problem while creating floppy disk [closed]
I am going through BrokenThorn Operating System Development Series. I am trying to create virtual floppy using steps provided there. Steps are :
We will use VFD to create a virtual ...
4
votes
1answer
650 views
How to distinguish between USB and floppy devices?
I'm trying to recognize drives types by looping around DriveInfo.GetDrives() result.
But for both USB and floppy I get the same DriveType.Removable value.
How can I distinguish between them?
2
votes
3answers
313 views
How to judge whether a driver is a floppy or a removable flash disk in C++?
I wonder if there is an API to distinguish floppy and flash disk in windows, C++
And is it possible to link a flash disk to A:\?
Many Thanks!
4
votes
1answer
2k views
Develop a Bootloader In Assembly
I've already done a part of my OS in Assembly, but now I want to build a own bootloader for it too instead of using GRUB. When I was developing my test OS in Assembly I remember that I boot it like ...
7
votes
4answers
1k views
Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows
On Windows (XP-7), is there a reliable way of programatically differentiating between USB floppy drives and USB flash drives in C++?
At the moment, I'm using WMI to get updates when new ...
4
votes
1answer
971 views
How to develop an Amiga application that is bootable from a floppy disk (NON-DOS)?
Following up on the "How do I code and compile an Amiga application?" question, which development library is required to boot an Amiga application from a floppy disk?
Update: (2012-04-10) To consider ...
1
vote
7answers
296 views
What software do I use to put floppies as images on a hard disk?
I still have a large number of floppies. On some of them there probably is source code I don't want to lose. I also don't want to take look at each one individually, as that's going to take a lot of ...
1
vote
4answers
8k views
Installing Windows on a RAID system without a floppy drive
What is the best way to install Windows on a system without a Floppy drive, when RAID drivers are required for the installation?
I'm specifically trying to get Windows 2003r2 64bit onto a rack-mount ...