Date: Thu, 10 May 2001 16:59:02 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Thomas Schachtner cc: djgpp AT delorie DOT com Subject: Re: read a specific memory address In-Reply-To: <9de56f$al4$1@news2.dtag.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Thu, 10 May 2001, Thomas Schachtner wrote: > > In NT, and thus in 2000, too, only kernel mode drivers have (almost) > > full access to all of the system. > > Is it possible to write a kernel mode driver with DJGPP? It depends on what do you call ``DJGPP''. Code produced by GCC will most probably not run in a kernel driver, and the binary format is wrong anyway. However, you could write something in assembly and assemble it with djasm. Then you might be able to do anything you want. But it's going to be very hard without the DDK, since all the headers and symbolic constants don't exist.