use toy_cpu_4bit::instruction::decode; fn main() { for i in 0..=255 { println!("{:#04X}\t{:#010b}\t{:?}", i, i, decode(i)); } }