1#![no_std]
2
3extern crate alloc;
4
5pub mod syscalls;
6
7pub use strat9_syscall::data::IpcMessage;
8
9pub const OPCODE_OPEN: u32 = 0x01;
10pub const OPCODE_READ: u32 = 0x02;
11pub const OPCODE_WRITE: u32 = 0x03;
12pub const OPCODE_CLOSE: u32 = 0x04;