diff options
Diffstat (limited to 'src/lvm.js')
-rw-r--r-- | src/lvm.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -78,16 +78,16 @@ const luaV_finishOp = function(L) { }; const RA = function(L, base, i) { - return base + i.A; + return base + i.A; }; const RB = function(L, base, i) { - return base + i.B; + return base + i.B; }; -const RC = function(L, base, i) { - return base + i.C; -}; +// const RC = function(L, base, i) { +// return base + i.C; +// }; const RKB = function(L, base, k, i) { return lopcodes.ISK(i.B) ? k[lopcodes.INDEXK(i.B)] : L.stack[base + i.B]; |