blob: 7fd804c934009031a7798979485899a3e781edef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// PATCH: Add floppy BlkDev type
// FILE: ::/Kernel/KernelA.HH
// TO INSTALL: Comment out the old #defines
// THEN: #include this file after them
#define BDT_NULL 0
#define BDT_RAM 1
#define BDT_ATA 2
#define BDT_ISO_FILE_READ 3
#define BDT_ISO_FILE_WRITE 4
#define BDT_ATAPI 5
#define BDT_FLOPPY 6
#define BDT_TYPES_NUM 7
|