Date: Tue, 26 Jan 93 14:16:40 MET From: MAHB AT IBM DOT RZ DOT TU-CLAUSTHAL DOT DE Subject: Re: coprocessor exception To: djgpp AT sun DOT soe DOT clarkson DOT edu A few day ago, I reported a problem with coprocessor exceptions. As J. Alan Eldrige suggested, I looked at the go32 sources and think I could fix the mistake. The problem is in the file exphdlr.c in function exception_handler(), where a comparison is wrong, so that int 0x75 is never reported. Here is a diff of my fix. diff exphdlr.old exphdlr.c 166c166 < && (i != hard_slave_hi + 5)) --- > && (i != hard_slave_lo + 5)) Henning Behnke