[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua byte code disassembly
- From: "Nick Trout" <nick@...>
- Date: Wed, 5 Sep 2001 10:15:04 +0100
| Has anyone made a utility that can export Lua:s bytecode in text-form?
| (disassembler)
The luac tool (provided in Lua's distribution) will compile code and display it
as VM code.
There is a script on the wiki to merge this VM code with the original source to
make it easier to read:
http://lua-users.org/wiki/VmMerge
N