15 lines
239 B
C
15 lines
239 B
C
//
|
|
// Created by rick on 03-02-21.
|
|
//
|
|
|
|
#ifndef NEW_KERNEL_IDE_H
|
|
#define NEW_KERNEL_IDE_H
|
|
|
|
#include <types.h>
|
|
|
|
void ide_register();
|
|
|
|
u8 ide_read_access(u8 direction, u8 drive, u32 lba, u8 numsects, void *target);
|
|
|
|
#endif //NEW_KERNEL_IDE_H
|