Dear All
i am using qemu with gdb, but i can dump out the CR0 and CR2 register from command "info all registers", please help?
thanks
from Peter ([email protected])
qemu + gdb , CR0
Re: qemu + gdb , CR0
there is no way to show cr0 directly with qemu+gdb, you may workaround by mov the values to regular registers.
On the other hand, you can check all registers with bochs.
On the other hand, you can check all registers with bochs.
Re: qemu + gdb , CR0
You can also use the Monitor Console in QEMU via Ctrl+Alt+2 then type info registers there.bluemoon wrote:there is no way to show cr0 directly with qemu+gdb, you may workaround by mov the values to regular registers.
On the other hand, you can check all registers with bochs.
Re: qemu + gdb , CR0
thanks mich