There are now unimplemented opcodes
This commit is contained in:
parent
5487fb66a2
commit
618314a7bb
1 changed files with 3 additions and 1 deletions
|
@ -590,7 +590,9 @@ impl Uxn {
|
||||||
let a = pop(wst.clone())?;
|
let a = pop(wst.clone())?;
|
||||||
push(wst.clone(), (a >> right) << left)?;
|
push(wst.clone(), (a >> right) << left)?;
|
||||||
}
|
}
|
||||||
_ => unreachable!(),
|
_ => {
|
||||||
|
panic!("Unsupported opcode {}", Icode::nameof(icode))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in a new issue