use crate::instruction;
#[derive(PartialOrd, Ord, PartialEq, Eq, Copy, Clone, Hash, Debug)]
pub(crate) enum Mode {
Normal,
Force,
Negative,
}
#[derive(PartialOrd, Ord, PartialEq, Eq, Copy, Clone, Hash, Debug)]
pub enum Instruction<'a> {
Push(instruction::Push<'a>),
Fetch(instruction::Fetch<'a>),
}