pub trait Stack {
    // Required methods
    fn push(&mut self, value: u8);
    fn pop(&mut self) -> u8;
    fn push_word(&mut self, value: u16);
    fn pop_word(&mut self) -> u16;
}
Expand description

Push and pop values from the stack.

Required Methods§

source

fn push(&mut self, value: u8)

Push a byte onto the stack.

source

fn pop(&mut self) -> u8

Pop a byte from the stack.

source

fn push_word(&mut self, value: u16)

Push a word (little-endian) onto the stack.

source

fn pop_word(&mut self) -> u16

Pop a word (little-endian) from the stack.

Implementors§