Open radare opened 5 years ago
Like the dcu or dsu command, the pdu should disassemble until a specific condition is found.
pdu 0x804804 @ 0x804600 # disassebmle from ..600 to ..804
Another example would be
pdur # disassemble until a ret instruction is found
Or maybe:
pdub # print disasembly until end of block (branch or ret) or use anal info
Use esil to emulate the flow? with pdue?
Same for piu
This looks interesting. I'd like to give it a try to implement pdu. I'm half way through it now.
pdu
Was wondering if this is still being considered or worked on ? I may be able to work on it
Like the dcu or dsu command, the pdu should disassemble until a specific condition is found.
Another example would be
Or maybe:
Use esil to emulate the flow? with pdue?