summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 476ef609f0c5e2cbcb36bf64fe9013015ae94318 (plain)
1
2
3
4
5
6
7
8
//! # PIC-OS
//!
//! Processor independent code for operating systems!
//! Provides common structures for synchronization, memory, etc.
#![no_std]
pub mod serial;
pub mod sync;
pub mod util;