User guide

>>> e r0 # Examine R0 symbolically,...
gpr: 0 ( R0) 0000000000000002
>>> e gpr:0 #...explicitly as device offset,...
gpr: 0 ( R0) 0000000000000002
>>> e 0 # ...or implicitly as device offset.
gpr: 0 ( R0) 0000000000000002
>>> e 8 # Examine R1...
gpr: 8 ( R1) 000000000000C408
>>> e # ...and the next R2.
gpr: 10 ( R2) 0000000000000000
>>> e ipr:0 # Examine an IPR...
ipr: 0 ( ASN) 0000000000000000
>>> e # ...and the next...
ipr: 1 ( ASTEN) 0000000000000000
>>> e + # ...and the next...
ipr: 2 ( ASTSR) 0000000000000000
>>> e * # ...and the current...
ipr: 2 ( ASTSR) 0000000000000000
>>> e - # ...and the previous one.
ipr: 1 ( ASTEN) 0000000000000000
>>> e ksp # Examine an IPR by name...
ipr: 12 ( KSP) 0000000000000F30
>>> e # ...and the next one.
ipr: 13 ( ESP) 0000000000000000
The examine and deposit commands support symbolic representation of the
following processor registers:
Register Meaning
pc Program counter
sp Stack pointer
ps Process status longword
>>> e pc # Program Counter
PC psr: 0 ( PC) 0000000000000D30
>>> e ps # Process Status
ipr: 17 ( PS) 0000000000001F00
>>> e sp # Stack Pointer
gpr: F0 ( R30) 0000000000000F30
Console Primer 12–11