15 lines
171 B
C
15 lines
171 B
C
#ifndef ATAPI_H
|
|
#define ATAPI_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct atapi_drive
|
|
{
|
|
uint8_t reg;
|
|
uint8_t drive;
|
|
};
|
|
|
|
void discover_atapi_drive(void);
|
|
|
|
#endif /* !ATAPI_H */
|