Message-ID: Comments: Authenticated sender is From: "Jose Manuel Roman Ramirez" Organization: Universidad Politecnica To: djgpp AT delorie DOT com Date: Tue, 15 Apr 1997 10:09:23 +0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Some problems Reply-to: jorora AT eui DOT upv DOT es Hi all! I was developing under Watcom C 10.0 and I've changed to DJGPP v2.0, but I have some problems: VESA: I've downloaded the file 'vbe.zip' who shows how to use VBE, but I need to write the OEM string of the VESA card, and I don't know how to make it... And know all the list of the supported modes, too... TIMER: I've changed the frequency of the timer (it's called every millisecond) but I need to chain the old interrupt when it's needed, not alwais. It looks like this: if (counter==HAVE_TO_CHAIN) _chain_int(0x08); else outp(0x20, 0x20); but I don't know how to made it... KEYBOARD: I've downloaded the library libhw.zip but GCC refuses to compile it saying something like 'attributes not supported for specifyed target', and I compile it using MAKE and following the instructions that came with the files... I need something to compile it? I have the las version of GCC. MOUSE: I've writted a handle under Watcom, but it doesn't work here... Some suggestions?