From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19935 invoked by alias); 13 Jan 2002 15:11:29 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 19892 invoked from network); 13 Jan 2002 15:11:28 -0000 Received: from unknown (HELO fep40-svc.tin.it) (212.216.176.93) by sources.redhat.com with SMTP; 13 Jan 2002 15:11:28 -0000 Received: from unitus.it ([80.116.243.170]) by fep40-svc.tin.it (InterMail vM.4.01.03.23 201-229-121-123-20010418) with ESMTP id <20020113151126.LPFU10851.fep40-svc.tin.it@unitus.it>; Sun, 13 Jan 2002 16:11:26 +0100 Message-ID: <3C41A377.D7E32C88@unitus.it> Date: Sun, 13 Jan 2002 07:11:00 -0000 From: Paolo Carlini X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.16 i686) X-Accept-Language: en MIME-Version: 1.0 To: riccardo@promethephs.ifctr.mi.cnr.it CC: gcc-help@gcc.gnu.org Subject: Re: gcc -S assembler syntax documentation Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-01/txt/msg00132.txt.bz2 >Would anyone kindly tell me where to find some manual about the assembler >syntax of .s files generated by gcc? Hi Riccardo, that syntax is very common in the *nix world and is known as the "AT&T Syntax". You can start learning about it on: http://www.linuxdoc.org/HOWTO/Assembly-HOWTO/index.html and, in particular: http://www.linuxdoc.org/HOWTO/Assembly-HOWTO/gas.html Of course, the "(g)as" man pages/info pages are also recommended. Cheers, Paolo.