aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 283dcdb6..b03cbc28 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.60 2000/04/27 17:39:15 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.61 2000/05/15 19:48:04 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*/
@@ -112,7 +112,7 @@ OP_SETLOCAL,/* L x - LOC[l]=x */
112OP_SETGLOBAL,/* K x - VAR[KSTR[k]]=x */ 112OP_SETGLOBAL,/* K x - VAR[KSTR[k]]=x */
113OP_SETTABLE,/* A B v a_a-a_1 i t (pops b values) t[i]=v */ 113OP_SETTABLE,/* A B v a_a-a_1 i t (pops b values) t[i]=v */
114 114
115OP_SETLIST,/* A B v_b-v_0 t t t[i+a*FPF]=v_i */ 115OP_SETLIST,/* A B v_b-v_1 t t t[i+a*FPF]=v_i */
116OP_SETMAP,/* U v_u k_u - v_0 k_0 t t t[k_i]=v_i */ 116OP_SETMAP,/* U v_u k_u - v_0 k_0 t t t[k_i]=v_i */
117 117
118OP_ADD,/* - y x x+y */ 118OP_ADD,/* - y x x+y */