1/*
2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H
6#define KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H
7
8
9#include <boot/disk_identifier.h>
10
11
12typedef struct bios_drive {
13	struct bios_drive	*next;
14	uint16				drive_number;
15	disk_identifier		identifier;
16} bios_drive;
17
18#endif	/* KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H */
19