Enum Opcode
P-Code operation codes understood by the virtual machine.
public enum Opcode
Fields
Cal = 4Call a procedure.
Int = 5Allocate stack space.
Jmp = 6Unconditional jump.
Jpc = 7Conditional jump based on top-of-stack.
Lit = 0Load literal constant onto the stack.
Lod = 2Load a variable from the stack frame.
Opr = 1Execute arithmetic, comparison, or return operations.
Sto = 3Store a value into a stack frame variable.