//! # PIC-OS //! //! Processor independent code for operating systems! //! Provides common structures for synchronization, memory, etc. #![no_std] pub mod sync; pub mod util;