kern

view src/ata.h @ 88:a398bf73fe93

- added the partition table parsing code - starting with the filesystem
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 08 Dec 2011 13:34:47 +0200
parents 379332fc1667
children 7ff2b4971216
line source
1 #ifndef ATA_H_
2 #define ATA_H_
4 void init_ata(void);
6 int ata_num_devices(void);
8 int ata_read_pio(int devno, uint64_t sect, void *buf);
9 int ata_write_pio(int devno, uint64_t sect, void *buf);
11 #endif /* ATA_H_ */