diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -282,6 +282,7 @@ OP_FORLOOP,/* A Bx R(A)+=R(A+2); | |||
282 | if R(A) <?= R(A+1) then { pc-=Bx; R(A+3)=R(A) } */ | 282 | if R(A) <?= R(A+1) then { pc-=Bx; R(A+3)=R(A) } */ |
283 | OP_FORPREP,/* A Bx R(A)-=R(A+2); pc+=Bx */ | 283 | OP_FORPREP,/* A Bx R(A)-=R(A+2); pc+=Bx */ |
284 | 284 | ||
285 | OP_TFORPREP,/* A Bx create upvalue A; pc+=Bx */ | ||
285 | OP_TFORCALL,/* A C R(A+3), ... ,R(A+2+C) := R(A)(R(A+1), R(A+2)); */ | 286 | OP_TFORCALL,/* A C R(A+3), ... ,R(A+2+C) := R(A)(R(A+1), R(A+2)); */ |
286 | OP_TFORLOOP,/* A Bx if R(A+1) ~= nil then { R(A)=R(A+1); pc -= Bx } */ | 287 | OP_TFORLOOP,/* A Bx if R(A+1) ~= nil then { R(A)=R(A+1); pc -= Bx } */ |
287 | 288 | ||