There are now unimplemented opcodes

This commit is contained in:
Reid 'arrdem' McKenzie 2023-01-02 23:13:51 -07:00
parent 5487fb66a2
commit 618314a7bb

View file

@ -590,7 +590,9 @@ impl Uxn {
let a = pop(wst.clone())?;
push(wst.clone(), (a >> right) << left)?;
}
_ => unreachable!(),
_ => {
panic!("Unsupported opcode {}", Icode::nameof(icode))
}
}
Ok(())