bochs帮助

配置文件

display_library: xxxx, options=gui_debug 可以开启图形调试. display_library一般配置文件都存在。只需要搜索后在后面加入 options 就可以了。具体参考 https://bochs.sourceforge.io/doc/docbook/user/bochsrc.html#BOCHSOPT-DISPLAYLIBRARY

bochs也支持GDB

 

ubuntu

apt install libgtk2.0-dev libx11-dev

./configure \
--prefix=/opt/bochs2.7 \
--enable-sb16 \
--enable-ne2000 \
--enable-all-optimizations \
--enable-cpu-level=6 \
--enable-x86-64 \
--enable-vmx=2 \
--enable-pci \
--enable-clgd54xx \
--enable-voodoo \
--enable-usb \
--enable-usb-ohci \
--enable-usb-ehci \
--enable-usb-xhci \
--enable-busmouse \
--enable-es1370 \
--enable-e1000 \
--enable-show-ips \
--enable-debugger \
--enable-debugger-gui \
--enable-avx \
--with-x


pkg-config --libs \
--path \
--libs-only-L \
--libs-only-l \
--static \
ncurses
 
 

romimage: file="C:\Program Files\Bochs-2.7/BIOS-bochs-latest", address=0x00000000, options=none
vgaromimage: file="C:\Program Files\Bochs-2.7/VGABIOS-lgpl-latest"
boot: disk
floppy_bootsig_check: disabled=0
floppya: type=1_44
# no floppyb
ata0: enabled=true, ioaddr1=0x1f0, ioaddr2=0x3f0, irq=14
ata0-master: type=disk, path="Z:\Project Git\mini_linux_runvt\loader.img", mode=flat, cylinders=1, heads=2, spt=3, sect_size=512, model="Generic 1234", biosdetect=auto, translation=auto
ata0-slave: type=none
ata1: enabled=true, ioaddr1=0x170, ioaddr2=0x370, irq=15
ata1-master: type=none
ata1-slave: type=none
ata2: enabled=false
ata3: enabled=false
optromimage1: file=none
optromimage2: file=none
optromimage3: file=none

posted @ 2021-11-17 12:51  狂客  阅读(101)  评论(0编辑  收藏  举报