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