Skip to content

Commit 41b2fdc

Browse files
committed
add todo for #29
1 parent e7bc601 commit 41b2fdc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

kernel/src/interrupts.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,13 @@ extern "x86-interrupt" fn keyboard_interrupt_handler(_stack_frame: InterruptStac
196196
}
197197

198198
KeyCode::ArrowLeft => {
199+
// TODO #25: Limits & newlines
199200
#[cfg(debug_assertions)]
200201
WRITER.lock().decrement_column_position();
201202
}
202203

203204
KeyCode::ArrowRight => {
205+
// TODO #25: Limits & newlines
204206
#[cfg(debug_assertions)]
205207
WRITER.lock().increment_column_position();
206208
}

0 commit comments

Comments
 (0)