如何在gdb中显示特定地址的值?
现在我已经学会了一点汇编程序(使用NASM)我想使用gdb来调试我的程序。
是否可以选择查看特定地址或特定字段的值?
例如:
variable resd 2
我保留了2*4字节的内存,在标记变量下可用。 如何调试地址[variable+4]
的值?
Now I have learnt a little bit of assembler (using NASM) I want to use gdb to debug my programs.
Is there a option to see the value at a specific adress or a specific field?
For example:
variable resd 2
I reserved 2*4 Bytes of memory, which is available under the marker variable.
How can I debug the value of the address [variable+4]
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
x 可用于显示某个地址处的内存,watch 可用于将变量添加到监视列表。
x can be used for displaying memory at an address, watch could be used for adding a variable to the watch-list.