From: Corey Harwell Newsgroups: comp.os.msdos.djgpp Subject: Re: Inline Assembly? Date: Thu, 22 Apr 1999 00:01:38 -0500 Organization: A poorly-installed InterNetNews site Lines: 16 Message-ID: <371EAD32.675B8239@mobiletel.com> References: NNTP-Posting-Host: cajun04-port18.cajunnet.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.51 [en] (Win95; I) X-Accept-Language: en To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com > asm { > mov al, low > mov ah, high > } // Data should return correctly since it's in AX right? first off DJGPP only understands AT&T style inline assembly not Intel... secondly inline is done like this if im not mistaken.. (its been awhile) asm(" instruction "); Thats about all i can tell you.. im not much of an AT&T style assembly programmer so i really can't give you any specifics on the difference from Intel. Look for some tutorials on the net. -Corey