System Debug Reference Manual (32650-90888)
108 Chapter4
System Debug Command Specifications :-Exit
D (display)
the current mode (CM/NM) and the specified command.
This parameter is ignored for display code commands (DC@).
Examples
%cmdebug > dd 77.0
DST %77.0 % 000655
Display DST 77.0. By default, one word is displayed in the current output base, octal.
%cmdebug > dd 77.0,20
DST %77.0
%0 % 000655 000012 000000 000000 000000 000000 000000 000000
%10 % 000000 000000 041515 023511 047111 052111 040514 020040
Display DST 77.0 for %20 words. By default, the data is displayed in the current output
base, octal, at eight words per line.
%cmdebug > dd 77.0,20,a
DST %77.0
%0 ASCII .. .. .. .. .. .. .. ..
%10 ASCII .. .. CM 'I NI TI AL
Display DST 77.0 for %20 words in ASCII. The two character ASCII Representations for
each word are displayed, separated by blanks. Dots (".") are displayed for nonprintable
characters.
%cmdebug > dd 77.0,20,b
DST %77.0
%0 % 000655 000012 000000 000000 .. .. .. ..
%4 % 000000 000000 000000 000000 .. .. .. ..
%10 % 000000 000000 041515 023511 .. .. CM 'I
%14 % 047111 052111 040514 020040 NI TI AL
Display DST 77.0 for %20 words. Display both numeric and ASCII data together. By
default, four words are displayed per line.
%cmdebug > dd 77.0,100,a,12
DST %77.0
%0 ASCII .. .. .. .. .. .. .. .. .. ..
%12 ASCII CM 'I NI TI AL . .. ..
%24 ASCII MI X' PA RM . .. ..
%36 ASCII LO AD . .. ..
%50 ASCII GE TS IR . .. ..
%62 ASCII RE LS IR . .. ..
%74 ASCII FR EE 'P RI
Display DST 77.0, for %100 words, in ASCII, in a width of %12 words per line.
%cmdebug > dd 77.0,100,s,12
DST %77.0 "...................."
DST %77.12 "CM'INITIAL ....."
DST %77.24 "MIX'PARM ....."
DST %77.36 "LOAD ....."
DST %77.50 "GETSIR ....."
DST %77.62 "RELSIR ....."
DST %77.74 "FREE'PRI"
Display DST 77.0 for %100 words, as a string, in a width of %12 CM words = #10 CM
words = 20 characters per line.