From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Doran, Steve @ OS" To: "'gcc-help@gcc.gnu.org'" Subject: Inline Assemby Date: Tue, 20 Mar 2001 11:39:00 -0000 Message-id: <9D823F09D175D211A6B000A0C9D5A8E402C2381C@exocean1.os.l-3com.com> X-SW-Source: 2001-03/msg00166.html Title: Inline Assemby I am somewhat confused about how to embed inline assembly in a gcc program. Below is my simple assembly instructions:     in   al, E0h     or   al, 01h     out E0h, al What is the syntax to insert my assembly instructions in gcc? I have read the gcc manual and I have tried all sorts of iterations without succcess. BTW, I have a requirement to port the assembly so I cannot convert it into C.