SFloppy

[This is preliminary documentation and subject to change.]

SUMMARY

The sfloppy sample is a super floppy driver that resides in the directory \\Ntddk\Src\Storage\sfloppy. It is a class driver for Super Floppy disk drives. It sits a level above the port driver (ATAPI, USB, etc) in the driver stack, and brokers communication between the application level and the port driver. The floppy driver takes requests from filesystem drivers and then sends the appropriate SCSI_REQUEST_BLOCK (SRB) to the port driver. It is compatible with x86 and IA64 platforms.

BUILDING THE SAMPLE

Type build in the \\Ntddk\Src\Storage\Sfloppy directory. A successful build produces sfloppy.sys

CODE TOUR

File Manifest

File		Description

Floppy.c	Super Floppy diskette driver  
SFloppy.rc	Resource file
Sources		Sources for build
Sfloppy.inf	INF file super floppy driver

Top of page

© 1999 Microsoft Corporation