kern

diff 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 diff
     1.1 --- a/src/ata.h	Wed Dec 07 06:58:05 2011 +0000
     1.2 +++ b/src/ata.h	Wed Dec 07 14:03:11 2011 +0200
     1.3 @@ -3,4 +3,7 @@
     1.4  
     1.5  void init_ata(void);
     1.6  
     1.7 +int ata_read_pio(int devno, uint64_t sect, void *buf);
     1.8 +int ata_write_pio(int devno, uint64_t sect, void *buf);
     1.9 +
    1.10  #endif	/* ATA_H_ */