Page 1 of 1

Using BOCHS

Posted: Mon May 26, 2003 11:00 pm
by pepito
I know it is possible to use BOCHS to debug NASM code.

Could somebody say me how, or where can I get information about?

Thank you,

pepito

RE:Using BOCHS

Posted: Wed May 28, 2003 11:00 pm
by darklife
Google it? I use bochs all the time. Normally I write my binary directly to floppy using the dd
program in linux. You can load binaries directly into bochs also. Read the docs that comes
with bochs and if you still need help then I'll be here.

RE:Using BOCHS

Posted: Wed May 28, 2003 11:00 pm
by pepito
Maybe I don't make well my question.

I know how use Bochs yet, I use it often. But I like to view the state of the CPU (eax, ebx, ecx, edx, esi, edi, flags, etc.) at some time. Like some integrated development environment let do.

Is this possible with Bochs 2.0?

again, thank you.

RE:Using BOCHS

Posted: Thu May 29, 2003 11:00 pm
by OSNewbie
bochs comes with a debugger, it is a separate file you need to run, bochsdbg.exe i believe, and set that up, and then use the commands like 'c', 's', 'vb', 'info reg', 'dump_cpu' and stuff (check the documentation that comes with bochs for the commands) to view registers and memory and set break points and stuff...

hope that helps

RE:Using BOCHS

Posted: Fri May 30, 2003 11:00 pm
by Dima
>I know how use Bochs yet, I use it often. But I like to view the state of the CPU (eax, ebx, >ecx, edx, esi, edi, flags, etc.) at some time. Like some integrated development environment >let do.
>
>Is this possible with Bochs 2.0?

  Try to find on google so named BFE - it's user interface to the bochs 1.xxx

RE:Using BOCHS

Posted: Sun Jun 01, 2003 11:00 pm
by pepito
Thank you...