문제

Is there a way to display a byte pointer as a watch in OllyDbg?

For example, if you enter as a watch an expression like [ecx+ebx] you might get a value like "FF084001", but if you want the byte pointer, the least significant byte (which is 01 here) there seems to be no way to display just that one byte. I tried entering:

byte ptr [ecx+ebx]

and got the error "Unrecognized identifier".

도움이 되었습니까?

해결책

Try [BYTE ecx+ebx]. Found in the documentation (help.pdf) by keyword expression.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top