blob: 25c04df057bd1ae75714d6b00a7105a6358c313b [file] [log] [blame]
#![no_std]
// TODO: Implement this crate, which will be done piece-by-piece. Platform will
// include:
// 1. The Allowed and AllowedSlice abstractions for sharing memory with the
// kernel
// 2. The PlatformApi trait and Platform implementation.
// 3. A system call trait so that Platform works in both real Tock apps and
// unit test environments. [DONE]
mod syscalls;
pub use syscalls::{MemopNoArg, MemopWithArg, Syscalls};