Tagged Questions

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.

learn more… | top users | synonyms

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
2answers
380 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 ...
4
votes
1answer
355 views

How to distinguish between USB and floppy devices - C#

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? Thanks! ...
3
votes
2answers
123 views

Explanation of assembly code

I have started to learn assembly. I came across these lines. ;*************************************************; ; OEM Parameter block / BIOS Parameter Block ...
3
votes
1answer
1k 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 ...
2
votes
3answers
179 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!
2
votes
2answers
667 views

How to build and deploy 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, what development applications and build process is required to boot an Amiga application from a floppy disk? Update: ...
1
vote
1answer
50 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
108 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
131 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 ...
1
vote
1answer
159 views

Problem while creating floppy disk

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 ...
1
vote
7answers
266 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
5k 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 ...
0
votes
2answers
449 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
120 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 ...