use crate::io::vga_text::OStream; use x86_64::structures::idt::InterruptStackFrame; pub extern "x86-interrupt" fn breakpoint_handler(stack_frame: &mut InterruptStackFrame) { let mut stdout = OStream::new(); stdout.print(b"EXCEPTION: BREAKPOINT\n"); }