From: Andreas Burman Newsgroups: comp.os.msdos.djgpp Subject: Asm Convert Date: Mon, 03 Nov 1997 17:02:37 -0800 Organization: Balderskolan Skelleftea Lines: 12 Message-ID: <345E742D.69D3@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 I'm converting my 3d-engine from 16 to 32 bits, it's going quite well but I have some problems whit djgpps assambler syntax. How do I convert the following Tasm code to djgpp? les di,dest mov al,BYTE PTR color mov ah,al mov cx,end sub cx,start inc cx shr cx,1 rep stosw