summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorChristian Cunningham <c@localhost>2022-08-23 21:29:06 -0700
committerChristian Cunningham <c@localhost>2022-08-23 21:29:06 -0700
commit052986797d04475490a07fb3846a04206b60fbb0 (patch)
tree3a68184144a3b9bad33cd10675d34dff5b39afb2 /src/lib.rs
parent4641519e429b45af81c65f9fdd269e41460142e6 (diff)
*cargo fmt
Some doc strings
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1808de4..550b78f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,2 +1,7 @@
+//! # PIC-OS
+//!
+//! Processor independent code for operating systems!
+//! Provides common structures for synchronization, memory, etc.
#![no_std]
pub mod sync;
+pub mod util;