diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-21 15:56:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-21 15:56:33 -0300 |
commit | fbc23d02456929a24bbad4eee2bd9d6ed8526ba7 (patch) | |
tree | a3951cb50721e882b605561a4fa29b8824991577 /lopcodes.h | |
parent | 81a8845e4f10851693cbe438520a4c07d347a731 (diff) | |
download | lua-fbc23d02456929a24bbad4eee2bd9d6ed8526ba7.tar.gz lua-fbc23d02456929a24bbad4eee2bd9d6ed8526ba7.tar.bz2 lua-fbc23d02456929a24bbad4eee2bd9d6ed8526ba7.zip |
details
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 | |||
126 | typedef enum { | 131 | typedef enum { |
127 | /*---------------------------------------------------------------------- | 132 | /*---------------------------------------------------------------------- |
128 | name args description | 133 | name args description |