aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 3d69196c..9e0ce498 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.158 2017/09/15 14:19:06 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.159 2017/09/18 16:07:54 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -175,6 +175,7 @@ name args description
175------------------------------------------------------------------------*/ 175------------------------------------------------------------------------*/
176OP_MOVE,/* A B R(A) := R(B) */ 176OP_MOVE,/* A B R(A) := R(B) */
177OP_LOADI,/* A sBx R(A) := sBx */ 177OP_LOADI,/* A sBx R(A) := sBx */
178OP_LOADF,/* A sBx R(A) := (lua_Number)sBx */
178OP_LOADK,/* A Bx R(A) := Kst(Bx) */ 179OP_LOADK,/* A Bx R(A) := Kst(Bx) */
179OP_LOADKX,/* A R(A) := Kst(extra arg) */ 180OP_LOADKX,/* A R(A) := Kst(extra arg) */
180OP_LOADBOOL,/* A B C R(A) := (Bool)B; if (C) pc++ */ 181OP_LOADBOOL,/* A B C R(A) := (Bool)B; if (C) pc++ */