Native Inspect Manual (H06.07+)

Using Native Inspect
Native Inspect Manual528122-006
2-10
Print Variables and Memory
Print Variables and Memory
Notes
Use the print command to print the values of variables.
Use the x command to display memory in its internal representation.
Step Execution Into a Function
Notes
Use the step command to step execution into a function.
Parameter values are not available until execution is stepped through function
prolog code.
(eInspect 3,591):print local_ptr1
$1 = 0x80001f0 "From main"
(eInspect 3,591):print /x &local_ptr1[0]
$2 = 0x80001f0
(eInspect 7,911):print local_ptr2
$10 = 0x6ffffedc "Hello world"
(eInspect 7,911):x /4 local_ptr2
0x6ffffedc: 72 'H' 101 'e' 108 'l' 108 'l'
Note. C/C++ character pointers are automatically dereferenced.
(eInspect 3,591):next
80 call1(local_ptr1,local_q);
(eInspect 3,591):step
call1(char *, int) (string=0x0, q=0) at \PIPPIN.$D0117.NITEST.GARTCC:84
84 {
(eInspect 3,591):next
85 A1 a1;
(eInspect 3,591):bt
#0 call1(char *, int) (string=0x80001f0 "From main", q=0)
at \PIPPIN.$D0117.NITEST.GARTCC:85
#1 0x70001320:0 in main () at \PIPPIN.$D0117.NITEST.GARTCC:80
#2 0x700034d0:0 in _MAIN () at \SPEEDY.$RLSE.T8432H01.CPLMAINC:68