Date: Tue, 12 May 1998 10:43:15 +0300 (IDT) From: Eli Zaretskii To: Fritz Parsons cc: djgpp AT delorie DOT com Subject: Re: Interrupts In-Reply-To: <355785D6.A415919A@performancesw.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Mon, 11 May 1998, Fritz Parsons wrote: > incl _RecStat /* add interrupt to status */ > .byte 0x2e > pushl %eax > xor %eax,%eax > mov %ax,%ds > movb $0x78,%al > call ___djgpp_hw_exception What else except a crash did you expect to happen here? You load DS with zero, which is an illegal selector, which is a blunt violation of protected-mode rules.