From 022bfe9ee60bc1160e02d846ffc4548ca1695e30 Mon Sep 17 00:00:00 2001 From: VegOwOtenks Date: Wed, 11 Sep 2024 00:38:35 +0200 Subject: [PATCH] I just implemented no-op --- src/jvm.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jvm.rs b/src/jvm.rs index 731cb5f..c1f869e 100644 --- a/src/jvm.rs +++ b/src/jvm.rs @@ -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))?;