Files
KatauOS/include/disk.h
T
2025-03-15 17:32:19 +03:00

16 lines
240 B
C

#ifndef DISK_H
#define DISK_H
#include <stdint.h>
typedef struct {
unsigned short cylinders;
unsigned char heads;
unsigned char sectors;
} disk_info;
void get_disk_info(disk_info *info);
int ide_check_disk_present();
#endif