diff --git a/src/main/java/org/jcnc/snow/vm/engine/VMOpCode.java b/src/main/java/org/jcnc/snow/vm/engine/VMOpCode.java index fcf9e49..3fa44e2 100644 --- a/src/main/java/org/jcnc/snow/vm/engine/VMOpCode.java +++ b/src/main/java/org/jcnc/snow/vm/engine/VMOpCode.java @@ -2218,11 +2218,34 @@ public class VMOpCode { // endregion Long64 // region Float32 (0x00D4-0xD8) - + /** + * F2B Opcode: Represents the type conversion operation from float32 to byte8 in the virtual machine. + *
This opcode is implemented by the {@link F2BCommand} class, which defines its specific execution logic.
+ * + *Execution Steps:
+ *This opcode is used to convert a float32 value to a byte8 type for further integer-based operations or comparisons.
+ */ public static final int F2B = 0x00D4; - + /** + * F2S Opcode: Represents the type conversion operation from float32 to short16 in the virtual machine. + *This opcode is implemented by the {@link F2SCommand} class, which defines its specific execution logic.
+ * + *Execution Steps:
+ *This opcode is used to convert a float32 value to a short16 type for further integer-based operations or comparisons.
+ */ public static final int F2S = 0x00D5; - /** * F2I Opcode: Represents the type conversion operation from float32 to int32 in the virtual machine. *This opcode is implemented by the {@link F2ICommand} class, which defines its specific execution logic.
@@ -2296,7 +2319,6 @@ public class VMOpCode { *This opcode is used to narrow a double64 value to a short16 type for further integer-based processing.
*/ public static final int D2S = 0x00DA; - /** * D2I Opcode: Represents the type conversion operation from double64 to int32 in the virtual machine. *This opcode is implemented by the {@link D2ICommand} class, which defines its specific execution logic.