Start off the interrupts driver (3h17m)

This commit is contained in:
Conzer 2024-12-03 18:44:41 -05:00
parent cbd2cfc1d4
commit af973e8c8e
3 changed files with 31 additions and 0 deletions

View file

@ -11,9 +11,14 @@ use donald::println;
pub extern "C" fn _start() -> ! {
println!("Hello World{}", "!");
donald::init();
x86_64::instructions::interrupts::int3();
#[cfg(test)]
test_main();
println!("It did not crash!");
loop {}
}