diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -9,7 +9,12 @@ main(struct boot_info *info) setup_descriptors(); setup_paging(info); + setup_acpi(info->rsdp, &info->ioapic); + setup_apic(&info->ioapic); + setup_keyboard(); - int *x = (int*)0xBEEF; - *x = 4; /* This should give us a page fault, and trigger the panic function */ + halt(); + +// int *x = (int*)0x0001; +// *x = 4; /* This should give us a page fault, and trigger the panic function */ } |