Greetings fellow engineers, I'm working on reversing a piece of WoW code but I feel a bit limited due to my lack of OllyDbg experience (and ASM experience). Say I'm debugging the following:
Code:
CMP DWORD PTR SS:[EBP+8], 0
JE SHORT 00CDDB28
MOV EAX, DWORD PTR DS:[ECX]
ADD EAX, DWORD PTR SS:[EBP+8]
When looking at the first instruction, I want to see the value of [EBP+8]. When looking at the third instruction I want to see the value of [ECX]. I know I have the registers off to the side but does OllyDbg have some kind of expression window where I could type [EBP+8] (or DWORD PTR SS:[EBP+8]) and have it spit out the result? If not, what are my options? Because doing it manually is rather annoying, not to mention confusing.