Message-Id: Date: Fri, 21 Jun 1996 09:32:38 +1200 From: Bill Currie To: mwallace AT skyler DOT wiltel DOT com Cc: djgpp AT delorie DOT com Subject: Re: Assembly On 19/6/96 10:34 am, did thus say >>> > > I am trying to port an assembly routine to DJGPP. However, > DJGPP does not recognize the op code I'm trying to use. > > The code is "shrd edx, eax, 16". I don't know that much > about assembly. How do I simulate this using other op > codes? > > Thanks. > > michael DOT wallace AT wcom DOT com > use shrd $16,%eax,%edx (assuming %edx is the destination) I'm thinking that someone (or more) should compile a listing of all valid gas instructions (I'm willing to help as I can provide some of the information myself). This should probably be a section in the FAQ (sure, there is some info in info, but it doesn't tell you everything). Bill