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