aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lopcodes.h b/lopcodes.h
index a93ae98c..3f25e828 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.12 1997/10/24 18:40:29 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.13 1997/12/29 17:35:46 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*/
@@ -172,6 +172,10 @@ POP0,/* - - - TOP-=1 */
172POP1,/* - - - TOP-=2 */ 172POP1,/* - - - TOP-=2 */
173 173
174ARGS,/* b - - TOP=BASE+b */ 174ARGS,/* b - - TOP=BASE+b */
175ARGS0,/* - - - TOP=BASE+0 */
176ARGS1,/* - - - TOP=BASE+1 */
177ARGS2,/* - - - TOP=BASE+2 */
178ARGS3,/* - - - TOP=BASE+3 */
175VARARGS/* b v_x...v_1 {v_1...v_x;n=x} TOP=BASE+b+1 */ 179VARARGS/* b v_x...v_1 {v_1...v_x;n=x} TOP=BASE+b+1 */
176} OpCode; 180} OpCode;
177 181