我已经用objdump读取了目标文件,这里有一点我的结果:
Disassembly of section .text.main:
00100000 <main>:
100000: 8d 4c 24 04 lea 0x4(%esp),%ecx
100004: 83 e4 f0 and $0xfffffff0,%esp
100007: ff 71 fc pushl -0x4(%ecx)
10000a: 55 push %ebp
10000b: 89 e5 mov %esp,%ebp
10000d: 57 push %edi
10000e: 56 push %esi
如果想在10000a地址中插入一个断点,我怎样才能从bochs命令行中做到这一点?
我尝试过这样的事情:b 0x10000a或vp 0x10000a 当我按下(c)它不会在断点处停止。
由于