diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.34 1999/11/25 18:59:43 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.35 1999/12/27 17:33:22 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 | */ |
@@ -102,6 +102,9 @@ CLOSURE,/* b c v_c-v_1 closure(CNST[b], v_c-v_1) */ | |||
102 | SETLINEW,/* w - - LINE=w */ | 102 | SETLINEW,/* w - - LINE=w */ |
103 | SETLINE,/* b - - LINE=b */ | 103 | SETLINE,/* b - - LINE=b */ |
104 | 104 | ||
105 | SETNAMEW,/* w c - - NAME=CNST[w],c */ | ||
106 | SETNAME,/* b c - - NAME=CNST[b],c */ | ||
107 | |||
105 | LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ | 108 | LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ |
106 | LONGARG /* b (add b*(1<<16) to arg of next instruction) */ | 109 | LONGARG /* b (add b*(1<<16) to arg of next instruction) */ |
107 | 110 | ||