aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 26b1850d..fd578c68 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -255,6 +255,10 @@ OP_BXOR,/* A B C R(A) := R(B) ~ R(C) */
255OP_SHL,/* A B C R(A) := R(B) << R(C) */ 255OP_SHL,/* A B C R(A) := R(B) << R(C) */
256OP_SHR,/* A B C R(A) := R(B) >> R(C) */ 256OP_SHR,/* A B C R(A) := R(B) >> R(C) */
257 257
258OP_MMBIN,/* A B C call B metamethod for previous bin. operation */
259OP_MMBINI,/* A B C call B metamethod for previous binI. operation */
260OP_MMBINK,/* A B C call B metamethod for previous binK. operation */
261
258OP_UNM,/* A B R(A) := -R(B) */ 262OP_UNM,/* A B R(A) := -R(B) */
259OP_BNOT,/* A B R(A) := ~R(B) */ 263OP_BNOT,/* A B R(A) := ~R(B) */
260OP_NOT,/* A B R(A) := not R(B) */ 264OP_NOT,/* A B R(A) := not R(B) */