Date: Tue, 2 May 2000 13:14:00 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp AT delorie DOT com Subject: Re: C++ methods in assembly? In-Reply-To: <1l0rgsge70rmt5ljub54mrtolub7koqti5@4ax.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 1 May 2000, Damian Yerrick wrote: > Is it possible to use Gas or NASM to write C++ member functions in > i386 assembly language? You could always write a C++ wrapper (make it inline for a good measure) which calls an assembly function declared extern "C". Or you could use inline assembly.