From: Henri Ossi Newsgroups: comp.os.msdos.djgpp Subject: AT&T standard, what is it? Date: Sun, 27 Apr 1997 11:01:48 +0300 Organization: Telecom Finland News Service Lines: 27 Message-ID: <336307EC.3DB9@geocities.com> NNTP-Posting-Host: pc1004.public.htk.fi 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 This is my little program in asm... How can I change this code,so it works inside DJGPP? I've heard about these AT&T and Intel standards, whats the difference? So, if someone could change this crappy little code to DJGPP's inside assmebly, I would be very happy... ; my little asm program .radix 16 main segment para 'code' ; org 0100 ; assume cs:main ; yeehaa: mov ah, 09h mov dx, OFFSET hello int 021h mov ah, 04ch int 021h hello: DB 'Try to change this to AT&T standard!!',0Dh,0Ah,'$' main ends ; end yeehaa ;