disk: implement ata_write

This commit is contained in:
2025-03-15 22:33:53 +03:00
parent f7ed064db7
commit 4cbdbfe838
3 changed files with 33 additions and 14 deletions
+1
View File
@@ -12,5 +12,6 @@ typedef struct {
void get_disk_info(disk_info *info);
int ide_check_disk_present();
uint8_t ata_read(uint8_t *buffer, uint32_t lba);
void ata_write(uint8_t *buffer, uint32_t lba);
#endif