Bochs: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
No edit summary
Line 5: Line 5:
==Frequent error messages==
==Frequent error messages==
===Running in Bogus Memory===
===Running in Bogus Memory===
You sent your code pointer (eip) to some uninitialized memory area. This means you either followed a null (or uninitialized) pointer, or you damaged the return address of your stack frame. Make your code more clean, test pointers before you follow them, initialize every pointer (especially those who are on the stack) and enable -Wall.
You sent your code pointer (eip) to some uninitialized memory area. This means you either followed a null (or uninitialized) pointer, or you damaged the return address of your [[Stack#Stack example on the X86 architecture|stack frame]]. Make your code more clean, test pointers before you follow them, initialize every pointer (especially those who are on the stack) and enable -Wall.


===TripleFault===
===TripleFault===