Search notes:

?

? evaluates expressions., ?? evaluates a C++ expression.
Symbols that occur in the expression are evaluated in the context of the current thread and process.

Print values of registers

With MASM evaluation, the value of a register can be printed simply like so:
? rcx
With C++ evaulation, the name of the register needs to be prefixed with an at sign (@):
?? @rcx
Compare with the r command.

See also

The .formats command also evaluates expressions.

Index