- 论坛徽章:
- 0
|
本帖最后由 whxlovehy 于 2012-05-15 22:52 编辑
使用gdb调试qemu的bios代码:
终端1: qemu-system-i386 -serial mon:stdio -S -gdb tcp::26000
终端2: gdb,相应的.gdbinit文件包含如下内容
set architecture i8086
define hook-stop
printf "[%4x:%4x] ", $cs, $eip
x/i $cs*16+$eip
end
target remote localhost:26000
问题如下:
1.gdb里面会出现一个警告(由set architecture i8086引起):
warning: A handler for the OS ABI "GNU/Linux" is not built into this configuration
of GDB. Attempting to continue with the default i8086 settings.
请问如何解决?
2.使用si单步运行指令,运行下面的指令后,就不再单步执行,自动运行了!这是正常情况吗?如何继续单步执行?
[f000:c64c] 0xfc64c: out %al,$0x70
以前没调试过,麻烦做过相关事情的项目的同学指点指点! |
|