Add page fault handler that does nothing, I am tired
Continuous integration / build (push) Failing after 38m24s

This commit is contained in:
2025-02-22 05:00:18 +00:00
parent 2b2219f5be
commit 40ad5dbbf4
3 changed files with 71 additions and 4 deletions
-3
View File
@@ -1,7 +1,6 @@
#![no_std]
#![feature(abi_x86_interrupt)]
use arch::x86_64::interrupts;
use core::arch::asm;
use limine::request::{RequestsEndMarker, RequestsStartMarker};
use limine::BaseRevision;
@@ -11,8 +10,6 @@ pub use lib_serial::{serial_print, serial_println, serial_read};
mod arch;
use lib_framebuffer;
/// Sets the base revision to the latest revision supported by the crate.
/// See specification for further info.
/// Be sure to mark all limine requests with #[used], otherwise they may be removed by the compiler.