kern

view src/ata.h @ 86:379332fc1667

implementing ata read/write
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Dec 2011 14:03:11 +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_ */