summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-21 15:56:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-21 15:56:33 -0300
commitfbc23d02456929a24bbad4eee2bd9d6ed8526ba7 (patch)
treea3951cb50721e882b605561a4fa29b8824991577 /lopcodes.h
parent81a8845e4f10851693cbe438520a4c07d347a731 (diff)
downloadlua-fbc23d02456929a24bbad4eee2bd9d6ed8526ba7.tar.gz
lua-fbc23d02456929a24bbad4eee2bd9d6ed8526ba7.tar.bz2
lua-fbc23d02456929a24bbad4eee2bd9d6ed8526ba7.zip
details
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