Formatting changes, called 'cargo fmt'

This commit is contained in:
2025-02-22 03:09:46 +00:00
parent 34213ca744
commit f5f5aeb8dc
10 changed files with 17 additions and 29 deletions
+1 -5
View File
@@ -9,14 +9,10 @@ static IDT: Lazy<InterruptDescriptorTable> = Lazy::new(|| {
idt
});
pub fn init_idt() {
IDT.load();
}
extern "x86-interrupt" fn breakpoint_handler(
stack_frame: InterruptStackFrame
) {
extern "x86-interrupt" fn breakpoint_handler(stack_frame: InterruptStackFrame) {
println_log!("Exception: Breakpoint\n{:#?}", stack_frame);
}