kern

annotate 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
rev   line source
nuclear@78 1 #ifndef ATA_H_
nuclear@78 2 #define ATA_H_
nuclear@78 3
nuclear@78 4 void init_ata(void);
nuclear@78 5
nuclear@88 6 int ata_num_devices(void);
nuclear@88 7
nuclear@86 8 int ata_read_pio(int devno, uint64_t sect, void *buf);
nuclear@86 9 int ata_write_pio(int devno, uint64_t sect, void *buf);
nuclear@86 10
nuclear@78 11 #endif /* ATA_H_ */