Log in

View Full Version : Instruction addresses in run traces


TheTwo
August 16th, 2004, 09:43
Hello,

I'm trying to write a tool to anylize run traces from ollydbg. Everythings going great so far, and ollydbg gives me plenty of info. Unfortunatly it does too much work for me. I need to know the address (in hex) of every instruction executed. Ollydbg attempts to translate every address executed into a name. For instance: if I had a function named 'func', the first instruction in that function would be recorded as being at address 'func' instead of it's real numeric address.

Is there some way to turn that feature off, or could that option be given in ollydbg?

-TheTwo

tonyxxy
August 16th, 2004, 11:23
Hi,

You can turn this off. Go to debugging options, diasm, and uncheck everything. That way Olly won't try to assign names to functions.

Hope this helps.

Regards,

tonyxxy

TheTwo
August 16th, 2004, 11:54
Just tried that and didn't work. Almost everywhere addresses are not translated, but the address of the executed instruction is still translated.

Thanks for trying, but that didn't do it

-TheTwo