1 2 3 4 5 6 7
#pragma once #include <stdbool.h> #include <stdint.h> void ata_init(void); bool ata_available(int drive); int ata_read(int drive, uint32_t lba, void *buf);