We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7fa38 commit 60c89ceCopy full SHA for 60c89ce
kernel/kernel/kernel.c
@@ -75,6 +75,8 @@ void _start(axle_boot_info_t* boot_info) {
75
serial_init();
76
77
// Kernel features
78
+ void _handle_page_fault();
79
+ interrupt_setup_callback(INT_VECTOR_INT14, (int_callback_t)_handle_page_fault);
80
pmm_init();
81
vmm_init(boot_info->boot_pml4);
82
0 commit comments