> -----Original Message----- > From: > [email protected] > [mailto:avr-gcc-list-bounces+eweddington=cso.atmel....@nongnu. > org] On Behalf Of larry barello > Sent: Wednesday, February 04, 2009 11:52 AM > To: [email protected] > Subject: [avr-gcc-list] WinAvr 20081205 and Xmega AVR > > So what should really happen is: > > > > return ( AS2 > (out,__SP_L__,%B1) CR_TAB > > + AS2 > (out,__SP_H__,%A1));
Shouldn't %A1 be in __SP_L__, and %B1 be in __SP_H__, like so?: + return (AS2 (out,__SP_L__,%A1) CR_TAB + AS2 (out,__SP_H__,%B1)); _______________________________________________ AVR-GCC-list mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/avr-gcc-list
