用途
打印出对应内存地址的内容。可以用来查看程序中相对应变量的值,还可以调试一些库文件。
X
命令打印出的格式
x /nfu <address>
Print Memory
n: How many units to print
f: Format charracter (like print)
u: Unit
Unit is one of:
b: Byte
h: Half-word (two bytes)
w: Word (four bytes)
g: Giant word (eight bytes)
此处:
x
为命令,
/17cb
为参数,17
表示有 17 个单元(Unit),c
表示字符,b
表示每个单元占 1 Byte。
$3
为引用地址。