lua-users home
lua-l archive

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


On 10/30/07, Tim Kelly <gtkelly@dialectronics.com> wrote:
> Hi All,
> First time poster.  I've been reading the threads a lot while developing
> in Lua, and a common thread is a need for integrated bitwise operators.  I
> recently found myself needing them, too, while writing a Lua-based
> disassembler for PowerPC code (soon to be announced).  Instead of using a
> library or some of the other choices, I decided to write them in Lua.
> Perhaps this is redundant, but with the recent thread on forking bringing
> this up again, I thought I'd post the code.
>
> http://www.dialectronics.com/Lua

There is a really slick bit manipulation library by Reuben Thomas
called bitlib you may be interested in.

http://rrt.sc3d.org/Software/Lua/ -> bitlib

   Ken Smith