Message-Id: <199610071720.KAA21819@bluesky.com> Comments: Authenticated sender is From: "Kevin Baca" To: Daniel Jungbluth , djgpp AT delorie DOT com Date: Mon, 7 Oct 1996 10:23:41 +0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: asm(" ..?.. "); > Hello, > Can anyone convert the following Intel style assembler code into AT&T style, so DJGPP can understand this piece of inline assembler code? > > rep movsd ds:[esi],es:[edi] > > I have tried to convert it into 'rep movsl %es:%edi,%ds:%esi', but this does not work. > > Thank you for any help!!! > > Daniel Jungbluth > > email: danju AT t-online DOT de > Internet: http://www.t-online.de/home/danju/index.htm > > semper fidelis If this a valid instruction? I though movsd/movsl implicitly moved from ds:esi to es:edi. Anyway, the rep and the movsl need to be on separate lines. -Kevin