mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
15 lines
302 B
C#
15 lines
302 B
C#
namespace Cosmos.System.FileSystem.FAT
|
|
{
|
|
public enum FatMediaKind
|
|
{
|
|
Removable = 0xF0,
|
|
Fixed = 0xF8,
|
|
Floppy1 = 0xF9,
|
|
Floppy2 = 0xFA,
|
|
Floppy3 = 0xFB,
|
|
Floppy4 = 0xFC,
|
|
Floppy5 = 0xFD,
|
|
Floppy6 = 0xFE,
|
|
Floppy7 = 0xFF
|
|
}
|
|
}
|