9 lines
175 B
C
9 lines
175 B
C
#ifndef ATAPI_H
|
|
#define ATAPI_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
int read_cdrom(uint16_t port, bool slave, uint32_t lba, uint32_t sectors, uint16_t *buffer);
|
|
|
|
#endif |