diff options
-rw-r--r-- | lopcodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.135 2010/03/12 19:14:06 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.136 2010/10/13 16:45:54 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,7 +123,7 @@ enum OpMode {iABC, iABx, iAsBx, iAx}; /* basic instruction format */ | |||
123 | | (cast(Instruction, bc)<<POS_Bx)) | 123 | | (cast(Instruction, bc)<<POS_Bx)) |
124 | 124 | ||
125 | #define CREATE_Ax(o,a) ((cast(Instruction, o)<<POS_OP) \ | 125 | #define CREATE_Ax(o,a) ((cast(Instruction, o)<<POS_OP) \ |
126 | | (cast(Instruction, a)<<POS_A)) | 126 | | (cast(Instruction, a)<<POS_Ax)) |
127 | 127 | ||
128 | 128 | ||
129 | /* | 129 | /* |