fix: cleanup

This commit is contained in:
Zoe
2026-08-27 13:18:57 -05:00
parent 7dcf244ee6
commit 8a71cdfcc5
11 changed files with 52 additions and 201 deletions
+1 -6
View File
@@ -15,6 +15,7 @@ use crate::{
};
#[derive(Debug)]
#[allow(unused)]
enum KernelStackCreateError {
AddressOverflow,
OutOfFrames,
@@ -194,12 +195,6 @@ pub unsafe extern "C" fn kernel_main(handoff: *mut KernelHandoff) -> ! {
println!("interrupt controller: {:?}", interrupt_controller);
println!("delaying 5 seconds...");
interrupt_controller
.delay(core::time::Duration::from_secs(5))
.unwrap();
println!("done!");
hcf();
}