Implement interrupts

This commit is contained in:
2025-08-19 22:51:33 +02:00
parent 92ccd189e7
commit 3f6df79885
14 changed files with 455 additions and 101 deletions

View File

@ -8,6 +8,8 @@
#define PREINIT_BUFFER_SIZE 0x1000
struct acpi_madt *MADT;
void acpi_init(void) {
uacpi_status ret;
@ -18,15 +20,5 @@ void acpi_init(void) {
hal_hang();
}
/* if (uacpi_unlikely_error(ret)) { */
/* ERR("acpi", "init err %s\n", uacpi_status_to_string(ret)); */
/* hal_hang(); */
/* } */
/* if (uacpi_unlikely_error(ret)) { */
/* ERR("acpi", "init err %s\n", uacpi_status_to_string(ret)); */
/* hal_hang(); */
/* } */
LOG("hal", "acpi init\n");
}