Date: Mon, 6 Mar 2000 19:22:44 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: "Martin F. Johansen" cc: djgpp AT delorie DOT com Subject: Re: Inline asm In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 6 Mar 2000, Martin F. Johansen wrote: > Does Inline asm work in djgpp? Yes. > I tried: > > asm MOV AX,0013h > asm INT 10h > > asm{ > MOV AX,0003h > INT 10h > } This is not the syntax of inline asm accepted by GCC. See Chapter 17 of the FAQ for details.