pub const DISPATCH_MEMORY_STORED: u8 = 0x10;
pub const DISPATCH_MEMORY_RETAGGED: u8 = 0x11;
pub const DISPATCH_MEMORY_PINNED: u8 = 0x12;
pub const DISPATCH_MEMORY_UNPINNED: u8 = 0x13;
pub const DISPATCH_MEMORY_DELETED: u8 = 0x14;
pub const MEMORIES_CHANNEL: &str = "cortex/memories";
const _: () = {
assert!(DISPATCH_MEMORY_STORED < 0x80);
assert!(DISPATCH_MEMORY_RETAGGED < 0x80);
assert!(DISPATCH_MEMORY_PINNED < 0x80);
assert!(DISPATCH_MEMORY_UNPINNED < 0x80);
assert!(DISPATCH_MEMORY_DELETED < 0x80);
};