lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Sat, Jun 6, 2020 at 4:09 PM Baozeng wrote:
As we know, Lua instruction format is the opcode with 6 bits,  `A` with 8 bits, `B` and `C` with 9 bits (together 32 bits)
I custom opcode with 8 bits, `A` with 8 bits,  `B` and `C` with 8 bits.


Does this mean your VM has 127 registers instead of 255?
A function containing 30 local variables and a matrix constructor 50x50 will fail to compile.