From: "lewi9908" Newsgroups: comp.os.msdos.djgpp Subject: Re: Quest about inline asm... Date: Fri, 13 Dec 2002 07:13:07 -0800 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <3DF9B0CA DOT 9050500 AT mail DOT inf DOT tu-dresden DOT de> X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Complaints-To: abuse AT supernews DOT com Lines: 26 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Thank for the replys... I tried __asm__("pushl %eax" : /*No output*/ :"a"(ResultsMod) :); and get ...: parse error before ')' and then I tried __asm__("pushl %eax" :"=a"(DigitToUse) :/*No input*/); and get ...: invalid 'asm' : operand number missing after %-letter Note: same for the pop instruction inline... How do I show an empty clobber list? Any more help...