From: Andreas Burman Newsgroups: comp.os.msdos.djgpp Subject: Simpel? Asm question Date: Fri, 16 Jan 1998 11:20:32 -0800 Organization: Balderskolan Skelleftea Lines: 8 Message-ID: <34BFB300.3705@ba.ssdn.skelleftea.se> NNTP-Posting-Host: news.skelleftea.se Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk How would I convert this Watcom Asm to Djgpp? int BIGMUL(int a,int b); #pragma aux BIGMUL = \ "imul edx" \ "mov eax,edx" \ parm [eax][edx] \ value [eax];