kern

view src/ata.h @ 89:2f555c81ae67

starting the filesystem
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 08 Dec 2011 18:19:35 +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_ */