diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -129,7 +129,6 @@ name args description | |||
129 | ------------------------------------------------------------------------*/ | 129 | ------------------------------------------------------------------------*/ |
130 | OP_MOVE,/* A B R(A) := R(B) */ | 130 | OP_MOVE,/* A B R(A) := R(B) */ |
131 | OP_LOADK,/* A Bc R(A) := Kst(Bc) */ | 131 | OP_LOADK,/* A Bc R(A) := Kst(Bc) */ |
132 | OP_LOADINT,/* A sBc R(A) := (Number)sBc */ | ||
133 | OP_LOADBOOL,/* A B C R(A) := (Bool)B; if (C) PC++ */ | 132 | OP_LOADBOOL,/* A B C R(A) := (Bool)B; if (C) PC++ */ |
134 | OP_LOADNIL,/* A B R(A) := ... := R(B) := nil */ | 133 | OP_LOADNIL,/* A B R(A) := ... := R(B) := nil */ |
135 | OP_GETUPVAL,/* A B R(A) := UpValue[B] */ | 134 | OP_GETUPVAL,/* A B R(A) := UpValue[B] */ |
@@ -180,10 +179,7 @@ OP_SETLIST,/* A Bc R(A)[Bc-Bc%FPF+i] := R(A+i), 1 <= i <= Bc%FPF+1 */ | |||
180 | OP_SETLISTO,/* A Bc */ | 179 | OP_SETLISTO,/* A Bc */ |
181 | 180 | ||
182 | OP_CLOSE,/* A close all variables in the stack up to (>=) R(A)*/ | 181 | OP_CLOSE,/* A close all variables in the stack up to (>=) R(A)*/ |
183 | OP_CLOSURE /* A Bc R(A) := closure(KPROTO[Bc], R(A), ... ,R(A+n)) */ | 182 | OP_CLOSURE/* A Bc R(A) := closure(KPROTO[Bc], R(A), ... ,R(A+n)) */ |
184 | /*---------------------------------------------------------------------- | ||
185 | pseudo-instructions (interruptions): cannot occur in regular code | ||
186 | ------------------------------------------------------------------------*/ | ||
187 | } OpCode; | 183 | } OpCode; |
188 | 184 | ||
189 | 185 | ||