diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.16 1998/03/10 17:15:05 roberto Exp $ | 2 | ** $Id: lopcodes.h,v 1.16 1998/03/11 13:59:50 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 | */ |
@@ -154,9 +154,8 @@ IFTUPJMPW,/* w x - (x!=nil)? PC-=w */ | |||
154 | IFFUPJMP,/* b x - (x==nil)? PC-=b */ | 154 | IFFUPJMP,/* b x - (x==nil)? PC-=b */ |
155 | IFFUPJMPW,/* w x - (x==nil)? PC-=w */ | 155 | IFFUPJMPW,/* w x - (x==nil)? PC-=w */ |
156 | 156 | ||
157 | CLOSURE,/* b proto v_b...v_1 c(proto) */ | 157 | CLOSURE,/* b c v_c...v_1 closure(CNST[b], v_c...v_1) */ |
158 | CLOSURE0,/* - proto c(proto) */ | 158 | CLOSUREW,/* w b v_b...v_1 closure(CNST[w], v_b...v_1) */ |
159 | CLOSURE1,/* - proto v_1 c(proto) */ | ||
160 | 159 | ||
161 | CALLFUNC,/* b c v_c...v_1 f r_b...r_1 f(v1,...,v_c) */ | 160 | CALLFUNC,/* b c v_c...v_1 f r_b...r_1 f(v1,...,v_c) */ |
162 | CALLFUNC0,/* b v_b...v_1 f - f(v1,...,v_b) */ | 161 | CALLFUNC0,/* b v_b...v_1 f - f(v1,...,v_b) */ |