From: Martynas Kunigelis Newsgroups: comp.os.msdos.djgpp Subject: Re: comments in inline assembly? Date: Thu, 17 Jul 1997 13:46:39 +0300 Organization: LITNET Lines: 23 Message-ID: References: <33CCDA4D DOT 29178F78 AT execulink DOT com> NNTP-Posting-Host: saule.pit.ktu.lt Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII In-Reply-To: <33CCDA4D.29178F78@execulink.com> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Wed, 16 Jul 1997, Jeff Weeks wrote: > Is it possible to have comments in inline assembly in DJGPP? I'm > writting some moderately small code (only about 20-30 lines) in inline > assembly, but I would still like to include comments so I know what I'm > doing at a later date. > > If it is possible, how is it done? > > Thanks, > Jeff yes it is. You can use either # or traditional C style comments (/* .. */) Uh.. maybe not in inline assembly, not sure, but in separate assembly source (to be compiled with as) you definitely can use them. Martynas P.S. Jeff, how's the KDE project going?