Message-ID: <000201be53ac$4c8c5c60$788904d0@default> From: "Steve Axsom" To: Subject: Re: Small problem with instruction sorting Date: Mon, 8 Feb 1999 16:21:05 -0500 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.0810.800 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.0810.800 Reply-To: djgpp AT delorie DOT com This might not be the best way of doing it, but this is the way I would =) ; try adding a rest before the key input: ----------------------------------------------------------------------- #include #include main() { printf("HELLO WORLD. PRESS KEY"); rest(1250); while(!bioskey(1)); exit(0); } -Shane