Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
2k views

Compiling Bochs on Mac os x Snow Leopard

Was someone able to compile the Bochs simulator under Snow Leopard. Leopard worked fine for me but under Snow Leopard I get alot of problems related to the Carbon library... Ok, some more information ...
2
votes
1answer
68 views

Paging Code Error

I have a toy kernel that I'm working with running under x86 on bochs. When I enable paging, bochs resets with a triple fault error. It seems that it is every and any memory access which triggers the ...
2
votes
0answers
172 views

How to get started on implementing a virtual machine?

I have recently become interested in implementing a basic x86 virtual machine. I think that it would be one the best ways to completely understand the way the x86 architecture works. Other than the ...
1
vote
2answers
45 views

X86: protected mode, GDT, IDT

I've tried to execute simple kernel with a kolibri bootloader. It's being loaded into 1000:0000. I don't understand, what's wrong in this part: ... ; switch to PM mov eax, cr0 or al, 1 mov cr0, eax ...
1
vote
2answers
216 views

How can I use Bochs to run Assembly code?

I want to use Bochs as an 8086 emulator. Is there an easy way to do this? What I want is something like emu8086 (http://www.emu8086.com/). Help appreciated.
1
vote
2answers
321 views

NASM on DOS (Intel 8086): invalid effective address

I am writing code for DOS using Bochs. I am compiling the program using NASM Lets suppose i have the following code: [BITS 16] SEGMENT code ..start: mov ax, data mov ds, ax mov bx, msg mov al, ...
1
vote
1answer
254 views

Using grub in floppy image file to start your own kernel inside bochs

Basically I've followed the instructions here http://sig9.com/bochs-grub to create a bare image file which does nothing but lets the BIOS start GRUB. The problems are: The kernel I am writing will ...
0
votes
0answers
19 views

How to understand and change CPU register FLAG in bochsdbg?

I can use 'r' to get the info of CPU register FLAG. 1.Can I understand by this? eflags 0x00000082: id vip vif ac vm rf nt IOPL=0 of df if tf SF zf af pf cf 0x00000082= 0 0 0 0 0 0 ...
0
votes
0answers
13 views

How to set breakpoint automatically in bochsrc.txt with bochsdbg?

I want to set a breakpoint at 0x7c00 when I run bochsdbg. I don't want to type these two commands my myself everytime. b 0x7c00 c How to do it in bochsrc.txt? Thank you~
0
votes
0answers
27 views

How to use bochsdbg to debug with asssembly code?

For example if I want to set a breakpoint at 'mov ah,my_string_address' which is at line 20, how can I do that? Note: I do not want to set a breakpoint at assembly code which is interpreted, such as ...
0
votes
0answers
60 views

Compiling Bochs on OSX, no target to make -lltdl

Like I said in the title, I'm trying to compile bochs on OSX. I'm using "custom" configure flags to mac it OSX "compatible" for the build, but in the makefile it calls to make -lltdl which I have ...
0
votes
0answers
17 views

file missing in bochs emulator

Recently I have been trying to use bochs emulator. I am using fedora as my Operating System. And I installed bochs using yum install bochs . Now the problem is, in my bochsrc.txt file I have ...
0
votes
1answer
34 views

Why bochsdbg failed to load bochsrc.txt but bochs can?

I can load bochsrc.txt on bochs, but failed to load bochsrc.txt on bochsdbg. My bochsrc.txt is megs: 32 romimage: file=/usr/share/bochs/BIOS-bochs-latest vgaromimage: ...
0
votes
1answer
84 views

error in bochs-2.3.5 while make in Ubuntu

I recently installed ubuntu 10.04, and has g++ installed (I use 'sudo apt-get install g++'). I want to use bochs-2.3.5 in this system and do this: './configure --enable-debugger --enable-disasm', ok, ...
0
votes
1answer
27 views

Something wrong while installing Bochs

After I type: ./configure --enable-debugger --enable-disasm something goes wrong: checking for ALL optimizations enabled... no ERROR: handlers-chaining speedups are not supported with internal ...
0
votes
0answers
87 views

Compiling Bochs 2.4.6 under Cygwin

Could anyone tell me a version of Cygwin that can compile successfully Bochs 2.4.6? I've tried with the latest version of Cygwin (1.7.9(0.237/5/3)) but I ran into a bunch of errors. In specific, I ...
0
votes
0answers
52 views

Bochs: Detecting which page triggered a Page Fault?

My program is crashing because of a page fault in Bochs: exception(): 3rd (14) exception with no resolution I don't have a proper handler for it yet, so of course it quits. Is there any way for me ...
0
votes
1answer
357 views

InitCursor(), CreateStandardAlert(), RunStandardAlert() not declared in scope while compiling bochs

I was trying to compile bochs the sh .conf.macosx worked but the make command resulted in InitCursor(), CreateStandardAlert(), RunStandardAlert() not declared in scope is there something obvious ...
0
votes
3answers
491 views

Debugging with Bochs + GDB: “cannot find bounds of current function”?

I'm working on writing an OS and I'm running into problems trying to debug my code. I'm using GDB to connect to Bochs' GDB stub to "remotely" debug my kernel. Connecting works fine, as does loading ...
0
votes
2answers
441 views

BIOS INT 0x15 Function 0x88 always returns same memory size

I'm using BIOS int 0x15 on my Bochs emulator, however this always returns the same memory size (34440) no matter what I have configured: mov ax, 0x88 int 0x15 I know that there are better methods ...