Note: If
the expression is a pointer, the value of the expression will be used
to address memory. If the expression is an lvalue
(with
an address in memory), its address will be used to address memory.
Otherwise, the value of the expression will be used as the address.
For example, given the declaration int i = 0x44;
,
if the expression is i
, the memory monitor will be
at the address of i
. If the expression is i+1
,
the memory monitor will be at the location given by the value of the
expression i+1
, which is 0x45
.