diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.89 2002/02/14 21:43:01 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.90 2002/03/08 19:10:32 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 | */ |
@@ -112,9 +112,10 @@ enum OpMode {iABC, iABc, iAsBc}; /* basic instruction format */ | |||
112 | 112 | ||
113 | 113 | ||
114 | /* | 114 | /* |
115 | ** an invalid register that fits in 8 bits | 115 | ** invalid registers that fits in 8 bits |
116 | */ | 116 | */ |
117 | #define NO_REG MAXARG_A | 117 | #define NO_REG MAXARG_A |
118 | #define NO_REG1 (NO_REG+1) | ||
118 | 119 | ||
119 | 120 | ||
120 | /* | 121 | /* |