winedbg - setting breakpoint
Hello List, I am trying to get classic Myst to run again under wine. How do I set a breakpoint in it when it run by winevdm. Thanks, Steve -- "They that give up essential liberty to obtain temporary safety, deserve neither liberty nor safety." (Ben Franklin) "The course of history shows that as a government grows, liberty decreases." (Thomas Jefferson)
Stephen Clark wrote:
Hello List,
I am trying to get classic Myst to run again under wine. How do I set a breakpoint in it when it run by winevdm.
Thanks, Steve
the answer depends on several aspects: - setting a breakpoint on wine code: that should work wine (especially for all DLLs, 16 or 32 bit) - setting a breakpoint in Myst code. Since it runs in winevdm, I assume it's a 16 bit exec. Symbolic information and other advanced debugging stuff (DLL loading event...) is not supported. The only thing you can do is set a breakpoint by address. It should work when expressed as a segmented address (bp 0x1234:0x5678). HTH A+
participants (2)
-
Eric Pouech -
Stephen Clark