summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorChristian Cunningham <c@localhost>2022-08-23 22:18:04 -0700
committerChristian Cunningham <c@localhost>2022-08-23 22:18:04 -0700
commite746ab10da35e5d9ef957c72adf9a3ec7a7df225 (patch)
treedaf55ae2215e7934292f21de68727ba733c7b3af /src/lib.rs
parentec68c0209227dd371b8f1c86890575eac0277695 (diff)
Queue trait
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 550b78f..476ef60 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,5 +3,6 @@
//! Processor independent code for operating systems!
//! Provides common structures for synchronization, memory, etc.
#![no_std]
+pub mod serial;
pub mod sync;
pub mod util;