How to single step ARM assembly in GDB on QEMU?

前端 未结 4 1745
死守一世寂寞
死守一世寂寞 2020-11-30 11:47

I\'m trying to learn about ARM assembler programming using the GNU assembler. I\'ve setup my PC with QEmu and have a Debian ARM-HF chroot environment.

If I assemble

4条回答
  •  渐次进展
    2020-11-30 12:14

    Single step of an assembly instruction is done with stepi. disas will disassemble around the current PC. info regi will display the current register state. There are some examples for various processors on my blog for my ELLCC cross development tool chain project.

提交回复
热议问题