aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lopcodes.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lopcodes.h b/lopcodes.h
index c1ab4092..6da468f5 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.37 2000/01/25 13:57:18 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.38 2000/01/28 16:53:00 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*/
@@ -104,9 +104,6 @@ CLOSURE,/* b c v_c-v_1 closure(CNST[b], v_c-v_1) */
104SETLINEW,/* w - - LINE=w */ 104SETLINEW,/* w - - LINE=w */
105SETLINE,/* b - - LINE=b */ 105SETLINE,/* b - - LINE=b */
106 106
107SETNAMEW,/* w c - - NAME=CNST[w],c */
108SETNAME,/* b c - - NAME=CNST[b],c */
109
110LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ 107LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */
111LONGARG /* b (add b*(1<<16) to arg of next instruction) */ 108LONGARG /* b (add b*(1<<16) to arg of next instruction) */
112 109