summaryrefslogtreecommitdiff
path: root/include/kernel/hd.h
blob: 292b92eb094b91358147a90016b620f18f162f1a (plain)
1
2
3
4
5
6
7
8
9
#ifndef _HD_H
#define _HD_H

#include <stdint.h>

int hd_read(void*, uint32_t, uint8_t);
int hd_write(void*, uint32_t, uint8_t);

#endif