Subversion Repositories freemyipod

Rev

Rev 427 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 427 Rev 430
Line 29... Line 29...
29
 
29
 
30
extern uint16_t ata_identify_data[0x100];
30
extern uint16_t ata_identify_data[0x100];
31
extern uint64_t ata_total_sectors;
31
extern uint64_t ata_total_sectors;
32
 
32
 
33
#ifdef ATA_HAVE_BBT
33
#ifdef ATA_HAVE_BBT
34
extern uint16_t ata_bbt[ATA_BBT_PAGES][0x20];
34
extern uint16_t (*ata_bbt)[0x20];
35
extern uint64_t ata_virtual_sectors;
35
extern uint64_t ata_virtual_sectors;
36
 
36
 
37
int ata_rw_sectors_internal(uint64_t sector, uint32_t count, void* buffer, bool write);
37
int ata_rw_sectors_internal(uint64_t sector, uint32_t count, void* buffer, bool write);
38
#endif
38
#endif
39
 
39