X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: Andris Pavenis To: djgpp AT delorie DOT com Subject: Re: PB compilation Date: Fri, 30 Jul 2004 09:29:29 +0300 User-Agent: KMail/1.6.82 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200407300929.30909.pavenis@latnet.lv> Reply-To: djgpp AT delorie DOT com On Thursday 29 July 2004 13:51, philippe meynard wrote: > Before I compiled with gcc2.953 and I have no error on : > > void set_start_adresse_asm(int x, int y) > { > unsigned short int low_ad; > unsigned short int high_ad; > > > high_ad = ((x +y*WIDTH)/4)/65536; > low_ad = ((x+ y*WIDTH)/4)%65536 ; > > asm volatile( " > push %%eax You cannot continue string in next line in this way any more: asm volatile("\n\ push %%eax \n\ ... must work. Andris