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 886cdbcc..e427ce49 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.141 2011/04/19 16:22:13 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.142 2011/07/15 12:50:29 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*/
@@ -188,6 +188,7 @@ OP_ADD,/* A B C R(A) := RK(B) + RK(C) */
188OP_SUB,/* A B C R(A) := RK(B) - RK(C) */ 188OP_SUB,/* A B C R(A) := RK(B) - RK(C) */
189OP_MUL,/* A B C R(A) := RK(B) * RK(C) */ 189OP_MUL,/* A B C R(A) := RK(B) * RK(C) */
190OP_DIV,/* A B C R(A) := RK(B) / RK(C) */ 190OP_DIV,/* A B C R(A) := RK(B) / RK(C) */
191OP_IDIV,/* A B C R(A) := RK(B) // RK(C) */
191OP_MOD,/* A B C R(A) := RK(B) % RK(C) */ 192OP_MOD,/* A B C R(A) := RK(B) % RK(C) */
192OP_POW,/* A B C R(A) := RK(B) ^ RK(C) */ 193OP_POW,/* A B C R(A) := RK(B) ^ RK(C) */
193OP_UNM,/* A B R(A) := -R(B) */ 194OP_UNM,/* A B R(A) := -R(B) */