From 80656d9257d48b58fd691efbb621a4134d75b075 Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Tue, 25 Oct 2011 23:33:14 -0500 Subject: [PATCH] [ide] Missed the headerS --- kernel/include/system.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kernel/include/system.h b/kernel/include/system.h index 5694527a..4cd4caa5 100644 --- a/kernel/include/system.h +++ b/kernel/include/system.h @@ -311,4 +311,8 @@ int system( char *, int, char **); /* Sytem Calls */ void syscalls_install(); +/* IDE / PATA */ +void ide_read_sector(uint16_t bus, uint8_t slave, uint32_t lba, char * buf); +void ide_write_sector(uint16_t bus, uint8_t slave, uint32_t lba, char * buf); + #endif