I just implemented no-op

This commit is contained in:
VegOwOtenks 2024-09-11 00:38:35 +02:00
parent 202d7692bc
commit 022bfe9ee6

View file

@ -1570,6 +1570,10 @@ impl JVM {
wrap_stackframe_error(class, method, frame.operand_stack.push(StackValue::Reference(new_object)))?;
}
Instruction::NoOperation() => {
}
Instruction::OrInt() => {
let value_0 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;
let value_1 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;