kern

view src/ata.h @ 87:178d5a95e6de

implementing ata read
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Dec 2011 17:10:37 +0200
parents 251a65b62223
children a398bf73fe93
line source
1 #ifndef ATA_H_
2 #define ATA_H_
4 void init_ata(void);
6 int ata_read_pio(int devno, uint64_t sect, void *buf);
7 int ata_write_pio(int devno, uint64_t sect, void *buf);
9 #endif /* ATA_H_ */