aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 7c695324..5386bb21 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.100 2002/08/05 14:46:43 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.101 2002/08/20 20:03:05 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*/
@@ -123,6 +123,11 @@ enum OpMode {iABC, iABx, iAsBx}; /* basic instruction format */
123** RK(x) == if x < MAXSTACK then R(x) else Kst(x-MAXSTACK) 123** RK(x) == if x < MAXSTACK then R(x) else Kst(x-MAXSTACK)
124*/ 124*/
125 125
126
127/*
128** grep "ORDER OP" if you change these enums
129*/
130
126typedef enum { 131typedef enum {
127/*---------------------------------------------------------------------- 132/*----------------------------------------------------------------------
128name args description 133name args description