13 lines
199 B
C
13 lines
199 B
C
#ifndef HAL_ACPI_H_
|
|
#define HAL_ACPI_H_
|
|
|
|
#include <stdint.h>
|
|
#include "uacpi/acpi.h"
|
|
|
|
extern struct acpi_madt *MADT;
|
|
|
|
void acpi_init(void);
|
|
uint8_t acpi_remapirq(uint8_t irq);
|
|
|
|
#endif // HAL_ACPI_H_
|