Date: Thu, 30 May 1996 19:03:51 +0200 (IST) From: Eli Zaretskii To: Lennart Steinke Cc: djgpp AT delorie DOT com Subject: Re: Interrupt keyword (clueless newbie) In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 30 May 1996, Lennart Steinke wrote: > but what is the "interrupt" keyword? I didn't find > anything in the faq, the info files etc. The FAQ *does* mention this keyword in section 18.9. It is not explained anywhere else in the docs because DJGPP doesn't recognize this keyword. Its meaning is explained in the docs of the other DOS compilers that support this keyword. Generally it tells the compiler to generate special code at entry and exit to the functions declared with this attribute; this code is required by the way hardware interrupts work on MS-DOS. See the above section of the FAQ for the explanation of how to do the same with DJGPP.