[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: How often does Lua bytecode change?
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 22 Nov 2023 09:37:21 -0300
> ... btw: Is there some chance that in some future Lua release
> (hopefully next Lua realease?), the Lua byte code file will be aligned
> to "Lua instruction byte size" (or at least to 32bit)? (so that no
> problem to keep Lua byte code in ROM for large program code (for
> lundump.c, function "loadCode"), if this large program code is flashed
> to the ROM code of some embedded ARM 32bit controller (e. g. STM32))?
> (see my last entry to thread "Re: luac to create 32bit Lua byte code"
> from Oct 24).
The next version will have alignment in binary chunks, and also a 'load'
that can reuse ROM memory for byte code, some debug info, and long
strings.
-- Roberto