Date: Thu, 31 Jul 1997 09:48:50 +0000 ( ) From: "Gurunandan R. Bhat" To: anfamily AT sprintmail DOT com Cc: djgpp AT delorie DOT com Subject: Re: Total newbie question In-Reply-To: <33e75373.3392190@news.shani.net> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Mon, 04 Aug 1997 19:25:12 -0700, Ionicis wrote: > > Ok, how do you even put a stinkin' white pixel on the screen with djgpp > (using C) without any gfx libs? if you are in mode 13h and want to put a pixel in "colour" at (x,y) try this. i wouldn't know how to make it stink though. #include #include _farpokeb(_dos_ds, 0xa0000 + y*320 + x, color);