lua-users home
lua-l archive

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


On Tue, Apr 20, 2010 at 5:06 PM, Francisco <xxleite@gmail.com> wrote:
> is possible inject assembler code into lua code?,

The question should be, why do you need to do this?

As already been mentioned, LuaJIT is damn fast and luatcc will allow
you to embed C. And even there the code is not actually embedded into
the Lua bytecode, there's no mechanism for that; a shared library is
created on the fly.

steve d.