summaryrefslogtreecommitdiff
path: root/kernel/src/io/mod.rs
diff options
context:
space:
mode:
authorNatrixAeria <upezu@student.kit.edu>2021-04-15 22:52:47 +0200
committerNatrixAeria <upezu@student.kit.edu>2021-04-15 22:52:47 +0200
commit9fcfcbbf16d05d294aadb9b88db0f004ba802bea (patch)
tree789c83f75e3391ecd3722e94e9a275229ec065e3 /kernel/src/io/mod.rs
parent8b810a009f8d29ba61a3c377fdeac06a3bbb151d (diff)
Rewrite a memory safe vga text buffer
Diffstat (limited to 'kernel/src/io/mod.rs')
-rw-r--r--kernel/src/io/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/src/io/mod.rs b/kernel/src/io/mod.rs
index e5dc66f..30645ad 100644
--- a/kernel/src/io/mod.rs
+++ b/kernel/src/io/mod.rs
@@ -1,4 +1,5 @@
pub mod qemu;
pub mod serial;
+#[macro_use]
pub mod vga_text;
pub mod panic_screen;