From: "Bob Platko" Newsgroups: comp.os.msdos.djgpp Subject: undefined reference using #pragma aux Date: 29 Dec 1996 22:18:48 GMT Organization: Netcom Lines: 16 Message-ID: <01bbf5d6$380e7a60$93f15ecf@platko.ix.netcom.com> NNTP-Posting-Host: clv-oh21-19.ix.netcom.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp I can't seem to get the following code to work in DJGPP. long Mul16_16( long a, long b ); #pragma aux Mul16_16 =\ "imul edx",\ "shrd eax,edx,16"\ parm [eax] [edx] Any sugestions? Is there another way to multiply two 16.16 fixed point numbers, returning a 16.16 result? Thanks. BP