blob: 7c0f762a6406c7f9b826576f1a8da208fa985e90 (
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 block device type #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
|