aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts/asmtest.lua
blob: ac5730e3e19d5b9eccb6a8f94fb28d9ed4abd31e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
xobj = require("lua-scripts.xobj")
asmrw = require("lua-scripts.asmrw")

function test()
  local elf_exe = "../bfd/test/test"
  local text_section = xobj.getTextSection(elf_exe)
  local head = jmp_s_t()
  -- messes up the stack. I could fix it but not sure why i would want to keep this in
  --local head2 = jmp_s_t:new()
  head = getjmptable(#text_section, text_section)

  while head:inext() ~= nil do
    head:dump("entry")
    io.write("type:", head:type(), "\tlocation:", "0x"..string.format("%x", head:location()))
    print()
    head = head:inext()
  end
end

test()