From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,edb329885d962c1d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-06 05:59:56 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!bloom-beacon.mit.edu!nycmny1-snh1.gtei.net!washdc3-snh1.gtei.net!news.gtei.net!chcgil2-snh1.gtei.net!news.bbnplanet.com!wn11feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc53.POSTED!not-for-mail From: "Jeffrey Creem" Newsgroups: comp.lang.ada References: Subject: Re: Ada and ASM X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: NNTP-Posting-Host: 66.31.4.164 X-Complaints-To: abuse@comcast.net X-Trace: rwcrnsc53 1062853195 66.31.4.164 (Sat, 06 Sep 2003 12:59:55 GMT) NNTP-Posting-Date: Sat, 06 Sep 2003 12:59:55 GMT Organization: Comcast Online Date: Sat, 06 Sep 2003 12:59:55 GMT Xref: archiver1.google.com comp.lang.ada:42205 Date: 2003-09-06T12:59:55+00:00 List-Id: "Jerry van Dijk" wrote in message news:m2ad9imzh2.fsf@jvdsys.demon.nl... > > Freejack writes: > > > As far as I can tell the GNAT system expects everything to be in GAS (Gnu > > Assembler) syntax and it expects the Assembler to be GAS. > > To be precise, GAS is only a front-end for the real assembler 'as'. > The idea of GAS was to make it a little easier to write assembler by hand, as > 'as' is really meant to assemble machine generated code. > > For the GNU system (which includes gcc and thus GNAT) 'as' is the standard > assembler on all platforms. I don't think this really is the right way to be precise here. The GNU Assembler, which people often call GAS gets built and installed (typically) as a binary called as. GAS is not a front-end for a real assembler. GAS is a real assembler. Calling GAS essentially a front-end or preprocessor (which is essentially the feeling one gets from the above post...although certainly not the words of the above post) seems a little misleading.