Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 397 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 397 Bytes

libUdis86-ruby

libUdis86-ruby is a ruby language binding for udis86 disassembler library.

http://udis86.sourceforge.net/

This library can be used to inspect raw x86/x64 code from your ruby script.

Build

ruby extconf.rb
make

Example

u = Udis86.new
u.mode = 64 # set x64 disassemble mode
u.input = "\x31\xc0\xc9"

p u.to_a

License

BSD License apply