| enum | ScriptStack.Runtime.OpCode {
ScriptStack.Runtime.DBG
, ScriptStack.Runtime.NOP
, ScriptStack.Runtime.DSB
, ScriptStack.Runtime.DB
,
ScriptStack.Runtime.INT
, ScriptStack.Runtime.MOV
, ScriptStack.Runtime.INC
, ScriptStack.Runtime.DEC
,
ScriptStack.Runtime.NEG
, ScriptStack.Runtime.ADD
, ScriptStack.Runtime.SUB
, ScriptStack.Runtime.MUL
,
ScriptStack.Runtime.DIV
, ScriptStack.Runtime.MOD
, ScriptStack.Runtime.TEST
, ScriptStack.Runtime.CEQ
,
ScriptStack.Runtime.CNE
, ScriptStack.Runtime.CG
, ScriptStack.Runtime.CGE
, ScriptStack.Runtime.CL
,
ScriptStack.Runtime.CLE
, ScriptStack.Runtime.OR
, ScriptStack.Runtime.AND
, ScriptStack.Runtime.NOT
,
ScriptStack.Runtime.JMP
, ScriptStack.Runtime.JZ
, ScriptStack.Runtime.JNZ
, ScriptStack.Runtime.DC
,
ScriptStack.Runtime.PTR
, ScriptStack.Runtime.PUSH
, ScriptStack.Runtime.POP
, ScriptStack.Runtime.CALL
,
ScriptStack.Runtime.RET
, ScriptStack.Runtime.INV
, ScriptStack.Runtime.RUN
, ScriptStack.Runtime.SHL
,
ScriptStack.Runtime.SHR
, ScriptStack.Runtime.ANDB
, ScriptStack.Runtime.ORB
, ScriptStack.Runtime.NOTB
,
ScriptStack.Runtime.XOR
, ScriptStack.Runtime.DCO
, ScriptStack.Runtime.LOCK
, ScriptStack.Runtime.FREE
} |