remote timer interrupt print

This commit is contained in:
mii443
2025-04-13 17:57:23 +09:00
parent 01509a77d7
commit 3b20f48161

View File

@@ -59,8 +59,6 @@ impl InterruptIndex {
} }
extern "x86-interrupt" fn timer_interrupt_handler(_stack_frame: InterruptStackFrame) { extern "x86-interrupt" fn timer_interrupt_handler(_stack_frame: InterruptStackFrame) {
print!(".");
unsafe { unsafe {
PICS.lock() PICS.lock()
.notify_end_of_interrupt(InterruptIndex::Timer.as_u8()); .notify_end_of_interrupt(InterruptIndex::Timer.as_u8());