Message-ID: <002d01bed7d2$1df74180$1d5dfea9@rincevent> From: "conrad" To: Subject: 13h graphic mode width DJGPP Date: Tue, 27 Jul 1999 03:48:16 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Reply-To: djgpp AT delorie DOT com Is there's a faster way to copy 'buffer' to the screen than : ________ for (int i=0;i<64000;i++){ _farpokeb(_dos_ds,0xA0000+i, *(buffer+i) ) ;}} ________ Isn't it possible to point to the video memory by another way than _farpoked(blabla) ?