use crate::stack::StackVec; pub fn band(memory: &mut StackVec) { let a: u16 = memory.pop(); let b: u16 = memory.pop(); memory.push(a & b); }