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