diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lopcodes.js | 5 | ||||
-rw-r--r-- | src/lvm.js | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/lopcodes.js b/src/lopcodes.js index f679f85..932878d 100644 --- a/src/lopcodes.js +++ b/src/lopcodes.js @@ -212,6 +212,8 @@ const MAXARG_C = ((1 << SIZE_C) - 1); /* this bit 1 means constant (0 means register) */ const BITRK = (1 << (SIZE_B - 1)); +const MAXINDEXRK = (BITRK - 1); + /* ** invalid register that fits in 8 bits */ @@ -333,6 +335,7 @@ module.exports.MAXARG_B = MAXARG_B; module.exports.MAXARG_Bx = MAXARG_Bx; module.exports.MAXARG_C = MAXARG_C; module.exports.MAXARG_sBx = MAXARG_sBx; +module.exports.MAXINDEXRK = MAXINDEXRK; module.exports.NO_REG = NO_REG; module.exports.OpArgK = OpArgK; module.exports.OpArgN = OpArgN; @@ -369,4 +372,4 @@ module.exports.iABx = iABx; module.exports.iAsBx = iAsBx; module.exports.iAx = iAx; module.exports.testAMode = testAMode; -module.exports.testTMode = testTMode;
\ No newline at end of file +module.exports.testTMode = testTMode; @@ -136,7 +136,6 @@ const luaV_execute = function(L) { if (i.breakpoint) // TODO: remove, used until lapi return; - // console.log(`> ${opcode}`); switch (opcode) { case OCi.OP_MOVE: { L.stack[ra] = L.stack[RB(L, base, i)]; |