Add missing import in code example

This commit is contained in:
Philipp Oppermann
2019-01-25 14:08:44 +01:00
parent db2290e47a
commit d84127a7a8

View File

@@ -172,6 +172,8 @@ As we see from the graphic [above](#the-8259-pic), the timer uses line 0 of the
```rust
// in src/interrupts.rs
use crate::print;
pub const TIMER_INTERRUPT_ID: u8 = PIC_1_OFFSET; // new
[]