By "first byte" do you mean the actual first byte in memory?
Value of 1 equals: 01 00 00 00 00 00 00 00
Or do you mean the first when in hex view?
Value of 1 equals: 0000000000000001
If the later, then simply search for a value between 0 and 72057677037927935.
If the former, then you may need to do something tricky.
Add all of the addresses to your table, then run the following Lua.
Code:
local addr = getAddressList()
local i = addr.Count - 1
while i >= 0 do
local vt = addr[i].Type
addr[i].Type = vtByte
if addr[i].Value == 0 then
addr[i].Type = vt
else
addr[i].Destroy()
end
i = i - 1
end
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum