Instruction manual
@ Indirect operation. Take the address specifier and use it as the pointer to the data.
The format of the sequence is actually @address where address can be any other
valid address value except another @. If no value is specified, address is treated as
the previous address used in any other console command.
Note
Exercise care when using this address function. The options that may be
accepted apply to the current address while the options from the previous
command are used for the indirect reference. Example 6 shows how the
options are interpreted.
Example 6 Sample Examine Commands
! This example reads a known value that was deposited into
! locations starting at physical memory address 00100000.:
>>> DEPOSIT -PM -N:5 0100000 01234567
>>> EXAMINE -PM -N:5 001000000
! This is the result:
PMEM: 00000000.01000000 01234567
PMEM: 00000000.01000004 01234567
PMEM: 00000000.01000008 01234567
PMEM: 00000000.0100000C 01234567
PMEM: 00000000.01000010 01234567
PMEM: 00000000.01000014 01234567
! This example examines and displays byte data.
>>> E -B 1000000
! Result:
PMEM: 00000000.01000000 00
>>>
! This example examines the word data size option.
>>> E -W 1000000
! Result:
PMEM: 00000000.01000000 0000
>>>
! This example examines the longword at address 1000000:
>>> E -L 1000000
! Result:
PMEM: 00000000.01000000 00000000
>>>
! This example examines the quadword at address 1000000:
>>> E -Q 1000000
Result:
(continued on next page)
16–16 Console