CVS: msp430-libc/include msp430x21x2.h, NONE, 1.1 msp430x47xx.h, NONE, 1.1 msp430x54xx.h, NONE, 1.1 io.h, 1.17, 1.18 iomacros.h, 1.35, 1.36 msp430x20x3.h, 1.5, 1.6 msp430x42x.h, 1.3, 1.4 msp430x42x0.h, 1.5, 1.6 msp430x43x.h, 1.9, 1.10 msp430xE42x.h, 1.4, 1.5 msp430xG42x0.h, 1.1, 1.2 msp430xG461x.h, 1.8, 1.9 signal.h, 1.15, 1.16
"Sergey A. Borshch" <[email protected]> Thu, 9 Oct 2008 15:00:16 +0000
| Newsgroups | gmane.comp.hardware.texas-instruments.msp430.gcc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/mspgcc/msp430-libc/include
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7041/msp430-libc/include
Modified Files:
io.h iomacros.h msp430x20x3.h msp430x42x.h msp430x42x0.h
msp430x43x.h msp430xE42x.h msp430xG42x0.h msp430xG461x.h
signal.h
Added Files:
msp430x21x2.h msp430x47xx.h msp430x54xx.h
Log Message:
* New cpu added:
- F2112, F2122, F2132
- G4250, G4260, G4270
- E4232, E4242, E4252, E4272
- F4351, F4361, F4371
- F4783, F4784, F4793, F4794
- F5418, F5419, F5435...F5438 (empty header file yet)
* headers added: 21x2, 47xx, 54xx(empty), tlv.h
* headers fixed:
- checking for _GNU_ASSEMBLER_ macro changed to GCC predefined macro __ASSEMBLER__.
Unneeded -D_GNU_ASSEMBLER_ removed from examples and libraries makefiles.
- __msp430_have_sd16a in headers changed to common-style __MSP430_HAS_SD16_A__
- E42x: fixed number of SD16 channels
- F42x0: fixed number of SD16A channels
- G42x0: fixed number of SD16A channels
--- NEW FILE: msp430x21x2.h ---
#ifndef __msp430x21x2
#define __msp430x21x2
/* msp430x21x2.h
*
* mspgcc project: MSP430 device headers
* MSP430x11x2 family header
*
* (c) 2005 by Steve Underwood <[email protected]>
* Originally based in part on work by Texas Instruments Inc.
*
* 2008-09-17 - sb-sf ([email protected])
* - created, based on msp430x21x1.h
*
* $Id: msp430x21x2.h,v 1.1 2008/10/09 15:00:13 sb-sf Exp $
*/
#include <iomacros.h>
#define __MSP430_HAS_WDT__
#define __MSP430_HAS_PORT1_R__
#define __MSP430_HAS_PORT2_R__
#define __MSP430_HAS_PORT2_R__
#define __MSP430_HAS_USCI_AB0__
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_T1A2__
#define __MSP430_HAS_BC2__
#define __MSP430_HAS_FLASH2__
#define __MSP430_HAS_CAPLUS__
#define __MSP430_HAS_ADC10__
#define __MSP430_HAS_TLV__
#include <msp430/basic_clock.h>
#include <msp430/flash.h>
#include <msp430/eprom.h>
#include <msp430/timera.h>
#include <msp430/gpio.h>
#include <msp430/compa.h>
#include <msp430/usci.h>
#include <msp430/adc10.h>
#include <msp430/tlv.h>
#include <msp430/common.h>
#define IE1_ 0x0000 /* Interrupt Enable 1 */
sfrb(IE1,IE1_);
#define WDTIE (1<<0)
#define OFIE (1<<1)
#define NMIIE (1<<4)
#define ACCVIE (1<<5)
#define IFG1_ 0x0002 /* Interrupt Flag 1 */
sfrb(IFG1,IFG1_);
#define WDTIFG (1<<0)
#define OFIFG (1<<1)
#define NMIIFG (1<<4)
#define IE2_ 0x0001 /* Interrupt Enable 2 */
sfrb(IE2,IE2_);
#define UC0IE IE2
#define UCA0RXIE (1<<0)
#define UCA0TXIE (1<<1)
#define UCB0RXIE (1<<2)
#define UCB0TXIE (1<<3)
#define IFG2_ 0x0003 /* Interrupt Flag 2 */
sfrb(IFG2,IFG2_);
#define UC0IFG IFG2
#define UCA0RXIFG (1<<0)
#define UCA0TXIFG (1<<1)
#define UCB0RXIFG (1<<2)
#define UCB0TXIFG (1<<3)
#define PORT1_VECTOR 4 /* 0xFFE4 Port 1 */
#define PORT2_VECTOR 6 /* 0xFFE6 Port 2 */
#define ADC10_VECTOR 10 /* 0xFFEA ADC10 */
#define USCIAB0TX_VECTOR 12 /* 0xFFEC USCI A0/B0 Transmit */
#define USCIAB0RX_VECTOR 14 /* 0xFFEE USCI A0/B0 Receive */
#define TIMER0_A1_VECTOR 16 /* 0xFFF0 Timer A0 CC1-2, TA */
#define TIMER0_A0_VECTOR 18 /* 0xFFF2 Timer A0 CC0 */
#define WDT_VECTOR 20 /* 0xFFF4 Watchdog Timer */
#define COMPARATORA_VECTOR 22 /* 0xFFF6 Comparator A */
#define TIMER1_A1_VECTOR 24 /* 0xFFF8 Timer A1 CC1, TA */
#define TIMER1_A0_VECTOR 26 /* 0xFFFA Timer A1 CC0 */
#define NMI_VECTOR 28 /* 0xFFFC Non-maskable */
#define BSLSKEY_ 0xFFDE /* The address is used as bootstrap loader security key */
#define BSLSKEY_DISABLE 0xAA55 /* Disables the BSL completely */
#define BSLSKEY_NO_ERASE 0x0000 /* Disables the erasure of the flash if an invalid password is supplied */
#endif /* #ifndef __msp430x21x2 */
--- NEW FILE: msp430x47xx.h ---
#if !defined(__msp430x47xx)
#define __msp430x47xx
/* msp430x47xx.h
*
* mspgcc project: MSP430 device headers
* MSP430x47xx family header
*
* (c) 2006 by Steve Underwood <[email protected]>
* Originally based in part on work by Texas Instruments Inc.
*
* 2008-10-08 - sb-sf ([email protected])
* - created, based on msp430xG461x.h
*
* $Id: msp430x47xx.h,v 1.1 2008/10/09 15:00:13 sb-sf Exp $
*/
#include <iomacros.h>
#define __MSP430_HAS_WDT__
#define __MSP430_HAS_MPY__
#define __MSP430_HAS_PORT1__
#define __MSP430_HAS_PORT2__
#define __MSP430_HAS_PORT3__
#define __MSP430_HAS_PORT4__
#define __MSP430_HAS_PORT5__
#define __MSP430_HAS_PORT6__
#define __MSP430_HAS_PORT7__
#define __MSP430_HAS_PORT8__
#define __MSP430_HAS_PORTA__
#define __MSP430_HAS_PORT9__
#define __MSP430_HAS_PORT10__
#define __MSP430_HAS_PORTA__
#define __MSP430_HAS_PORTB__
#define __MSP430_HAS_FLLPLUS__
#define __MSP430_HAS_BT_RTC__
#define __MSP430_HAS_LCD_A__
#define __MSP430_HAS_USCI__
#define __MSP430_HAS_USCI1__
#define __MSP430_HAS_USCI_AB0__
#define __MSP430_HAS_USCI_AB1__
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_TB3__
#define __MSP430_HAS_FLASH__
#define __MSP430_HAS_COMPA__
#define __MSP430_HAS_SVS__
#define __MSP430_HAS_SD16_A__
#define __MSP430_HAS_SD16_CH1__
#define __MSP430_HAS_SD16_CH2__
#if defined(__MSP430_4783__) || defined(__MSP430_4793__)
#define __MSP430_HAS_SD16_CH3__
#endif
#define __msp430_have_lcd_16_20
#define LCD_BASE 0x90
#include <msp430/basic_timer.h>
#include <msp430/system_clock.h>
#include <msp430/svs.h>
#include <msp430/lcd_a.h>
#include <msp430/flash.h>
#include <msp430/compa.h>
#include <msp430/timera.h>
#include <msp430/timerb.h>
#include <msp430/usci.h>
#include <msp430/gpio.h>
#include <msp430/common.h>
#define IE1_ 0x0000 /* Interrupt Enable 1 */
sfrb(IE1,IE1_);
#define WDTIE (1<<0)
#define OFIE (1<<1)
#define NMIIE (1<<4)
#define ACCVIE (1<<5)
#define IFG1_ 0x0002 /* Interrupt Flag 1 */
sfrb(IFG1,IFG1_);
#define WDTIFG (1<<0)
#define OFIFG (1<<1)
#define NMIIFG (1<<4)
#define IE2_ 0x0001 /* Interrupt Enable 2 */
sfrb(IE2,IE2_);
#define UCA0RXIE (1<<0)
#define UCA0TXIE (1<<1)
#define UCB0RXIE (1<<2)
#define UCB0TXIE (1<<3)
#define BTIE (1<<7)
#define IFG2_ 0x0003 /* Interrupt Flag 2 */
sfrb(IFG2,IFG2_);
#define UCA0RXIFG (1<<0)
#define UCA0TXIFG (1<<1)
#define UCB0RXIFG (1<<2)
#define UCB0TXIFG (1<<3)
#define BTIFG (1<<7)
#define BASICTIMER_VECTOR 32 /* 0xFFE0 Basic Timer / RTC */
#define PORT2_VECTOR 34 /* 0xFFE2 Port 2 */
#define USCIAB1TX_VECTOR 36 /* 0xFFE4 USCI A1/B1 Transmit */
#define USCIAB1RX_VECTOR 38 /* 0xFFE6 USCI A1/B1 Receive */
#define PORT1_VECTOR 40 /* 0xFFE8 Port 1 */
#define TIMER0_A1_VECTOR 42 /* 0xFFEA Timer A CC1-2, TA */
#define TIMER0_A0_VECTOR 44 /* 0xFFEC Timer A CC0 */
#define SD16_VECTOR 46 /* 0xFFEE ADC */
#define USCIAB0TX_VECTOR 48 /* 0xFFF0 USCI A0/B0 Transmit */
#define USCIAB0RX_VECTOR 50 /* 0xFFF2 USCI A0/B0 Receive */
#define WDT_VECTOR 52 /* 0xFFF4 Watchdog Timer */
#define COMPARATORA_VECTOR 54 /* 0xFFF6 Comparator A */
#define TIMER0_B1_VECTOR 56 /* 0xFFF8 Timer B CC1-2, TB */
#define TIMER0_B0_VECTOR 58 /* 0xFFFA Timer B CC0 */
#define NMI_VECTOR 60 /* 0xFFFC Non-maskable */
#define TIMERA1_VECTOR TIMER0_A1_VECTOR
#define TIMERA0_VECTOR TIMER0_A0_VECTOR
#define TIMERB1_VECTOR TIMER0_B1_VECTOR
#define TIMERB0_VECTOR TIMER0_B0_VECTOR
#endif /* #ifndef __msp430x47xx */
--- NEW FILE: msp430x54xx.h ---
#if !defined(__msp430x54xx)
#define __msp430x54xx
/* msp430x54xx.h
*
* mspgcc project: MSP430 device headers
* MSP430x54xx family header
*
* (c) 2006 by Steve Underwood <[email protected]>
* Originally based in part on work by Texas Instruments Inc.
*
* 2008-10-08 - sb-sf ([email protected])
* - created, based on msp430xG461x.h
*
* $Id: msp430x54xx.h,v 1.1 2008/10/09 15:00:13 sb-sf Exp $
*/
#include <iomacros.h>
/*
Empty yet :(
*/
#endif /* #ifndef __msp430x54xx */
Index: io.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/io.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -w -d -r1.17 -r1.18
--- io.h 15 May 2008 00:54:32 -0000 1.17
+++ io.h 9 Oct 2008 15:00:13 -0000 1.18
@@ -74,6 +74,9 @@
#elif defined(__MSP430_2101__) || defined(__MSP430_2111__) || defined(__MSP430_2121__) || defined(__MSP430_2131__)
#include <msp430x21x1.h>
+#elif defined(__MSP430_2112__) || defined(__MSP430_2122__) || defined(__MSP430_2132__)
+#include <msp430x21x2.h>
+
#elif defined(__MSP430_2232__) || defined(__MSP430_2252__) || defined(__MSP430_2272__)
#include <msp430x22x2.h>
@@ -116,7 +119,11 @@
#elif defined(__MSP430_4250__) || defined(__MSP430_4260__) || defined(__MSP430_4270__)
#include <msp430x42x0.h>
-#elif defined(__MSP430_E423__) || defined(__MSP430_E425__) || defined(__MSP430_E427__)
+#elif defined(__MSP430_G4250__) || defined(__MSP430_G4260__) || defined(__MSP430_G4270__)
+#include <msp430xG42x0.h>
+
+#elif defined(__MSP430_E423__) || defined(__MSP430_E425__) || defined(__MSP430_E427__) \
+ || defined(__MSP430_E4232__) || defined(__MSP430_E4242__) || defined(__MSP430_E4252__) || defined(__MSP430_E4272__)
#include <msp430xE42x.h>
#elif defined(__MSP430_W423__) || defined(__MSP430_W425__) || defined(__MSP430_W427__)
@@ -125,7 +132,8 @@
#elif defined(__MSP430_G437__) || defined(__MSP430_G438__) || defined(__MSP430_G439__)
#include <msp430xG43x.h>
-#elif defined(__MSP430_435__) || defined(__MSP430_436__) || defined(__MSP430_437__)
+#elif defined(__MSP430_435__) || defined(__MSP430_436__) || defined(__MSP430_437__) \
+ || defined(__MSP430_4351__) || defined(__MSP430_4361__) || defined(__MSP430_4371__)
#include <msp430x43x.h>
#elif defined(__MSP430_447__) || defined(__MSP430_448__) || defined(__MSP430_449__)
@@ -134,6 +142,13 @@
#elif defined(__MSP430_G4616__) || defined(__MSP430_G4617__) || defined(__MSP430_G4618__) || defined(__MSP430_G4619__)
#include <msp430xG461x.h>
+#elif defined(__MSP430_4783__) || defined(__MSP430_4784__) || defined(__MSP430_4793__) || defined(__MSP430_4794__)
+#include <msp430x47xx.h>
+
+#elif defined(__MSP430_5418__) || defined(__MSP430_5419__) \
+ || defined(__MSP430_5435__) || defined(__MSP430_5436__) || defined(__MSP430_5437__) || defined(__MSP430_5438__)
+#include <msp430x54xx.h>
+
#else
#warning "Unknown arch! Please check"
#include <iomacros.h>
Index: iomacros.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/iomacros.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -w -d -r1.35 -r1.36
--- iomacros.h 26 May 2008 20:27:51 -0000 1.35
+++ iomacros.h 9 Oct 2008 15:00:13 -0000 1.36
@@ -29,7 +29,7 @@
#if !defined(__IOMACROS_H_)
#define __IOMACROS_H_
-#if !defined(_GNU_ASSEMBLER_)
+#if !defined(__ASSEMBLER__)
#include <sys/inttypes.h>
@@ -306,13 +306,13 @@
#define MARK_VOLATILE __asm__ __volatile__("; volatile")
-#endif /* not _GNU_ASSEMBLER_ */
+#endif /* not __ASSEMBLER__ */
/*
* Defines for assembler.
* Hope there is a better way to do this.
*/
-#if defined(_GNU_ASSEMBLER_)
+#if defined(__ASSEMBLER__)
#define sfrb(x,x_) x=x_
#define sfrw(x,x_) x=x_
Index: msp430x20x3.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430x20x3.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -d -r1.5 -r1.6
--- msp430x20x3.h 16 Nov 2006 01:19:37 -0000 1.5
+++ msp430x20x3.h 9 Oct 2008 15:00:13 -0000 1.6
@@ -20,10 +20,11 @@
#define __MSP430_HAS_TA2__
#define __MSP430_HAS_BC2__
#define __MSP430_HAS_FLASH2__
-#define __MSP430_HAS_SD16_1__
+#define __MSP430_HAS_SD16_A__
+#define __MSP430_HAS_SD16_BUF__
+#define __MSP430_HAS_SD16_CH1__
#define __MSP430_HAS_USI__
-#define __msp430_have_sd16a
#include <msp430/basic_clock.h>
#include <msp430/flash.h>
Index: msp430x42x.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430x42x.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -d -r1.3 -r1.4
--- msp430x42x.h 7 Jun 2006 13:01:30 -0000 1.3
+++ msp430x42x.h 9 Oct 2008 15:00:13 -0000 1.4
@@ -25,12 +25,11 @@
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_FLASH__
#define __MSP430_HAS_MPY__
-#define __MSP430_HAS_SD16_3__
+#define __MSP430_HAS_SD16_CH1__
+#define __MSP430_HAS_SD16_CH2__
#define __msp430_have_lcd_16_20
#define LCD_BASE 0x90
-#define __msp430_have_sd16_1
-#define __msp430_have_sd16_2
#include <msp430/basic_timer.h>
#include <msp430/system_clock.h>
Index: msp430x42x0.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430x42x0.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -d -r1.5 -r1.6
--- msp430x42x0.h 7 Jun 2006 13:01:30 -0000 1.5
+++ msp430x42x0.h 9 Oct 2008 15:00:13 -0000 1.6
@@ -24,13 +24,13 @@
#define __MSP430_HAS_LCD_A__
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_FLASH__
-#define __MSP430_HAS_SD16_1__
+#define __MSP430_HAS_SD16_A__
+#define __MSP430_HAS_SD16_BUF__
#define __MSP430_HAS_DAC12_1__
#define __msp430_have_lcd_a
#define __msp430_have_lcd_16_20
#define LCD_BASE 0x90
-#define __msp430_have_sd16a
#define __msp430_have_dac12_op_amp
#include <msp430/basic_timer.h>
Index: msp430x43x.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430x43x.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -d -r1.9 -r1.10
--- msp430x43x.h 7 Jun 2006 13:01:30 -0000 1.9
+++ msp430x43x.h 9 Oct 2008 15:00:13 -0000 1.10
@@ -9,6 +9,9 @@
* (c) 2002 by M. P. Ashton <[email protected]>
* Originally based in part on work by Texas Instruments Inc.
*
+ * 2008-09-17 - sb-sf ([email protected])
+ * - msp430x43x1 added
+ *
* $Id$
*/
@@ -44,7 +47,9 @@
#include <msp430/timera.h>
#include <msp430/timerb.h>
#include <msp430/usart.h>
+#if !defined(__MSP430_4351__) && !defined(__MSP430_4361__) && !defined(__MSP430_4371__)
#include <msp430/adc12.h>
+#endif
#include <msp430/gpio.h>
#include <msp430/compa.h>
Index: msp430xE42x.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430xE42x.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -d -r1.4 -r1.5
--- msp430xE42x.h 17 Aug 2005 14:28:46 -0000 1.4
+++ msp430xE42x.h 9 Oct 2008 15:00:14 -0000 1.5
@@ -25,13 +25,18 @@
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_FLASH__
#define __MSP430_HAS_MPY__
-#define __MSP430_HAS_SD16_3__
-#define __MSP430_HAS_ESP430E__
+#define __MSP430_HAS_SD16_CH1__
+#define __MSP430_HAS_SD16_CH2__
+
+#if defined(__MSP430_E423__) || defined(__MSP430_E425__) || defined(__MSP430_E427__)
+#define __MSP430_HAS_ESP430E__ // for backward compability
+#define __MSP430_HAS_ESP430E1A__
+#elif defined(__MSP430_E4232__) || defined(__MSP430_E4242__) || defined(__MSP430_E4252__) || defined(__MSP430_E4272__)
+#define __MSP430_HAS_ESP430E1B__
+#endif
#define __msp430_have_lcd_16_20
#define LCD_BASE 0x90
-#define __msp430_have_sd16_1
-#define __msp430_have_sd16_2
#include <msp430/basic_timer.h>
#include <msp430/system_clock.h>
Index: msp430xG42x0.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430xG42x0.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- msp430xG42x0.h 2 Oct 2007 11:33:15 -0000 1.1
+++ msp430xG42x0.h 9 Oct 2008 15:00:14 -0000 1.2
@@ -24,14 +24,14 @@
#define __MSP430_HAS_LCD_A__
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_FLASH__
-#define __MSP430_HAS_SD16_1__
+#define __MSP430_HAS_SD16_A__
+#define __MSP430_HAS_SD16_BUF__
#define __MSP430_HAS_DAC12_1__
#define __MSP430_HAS_OA_2__
#define __msp430_have_lcd_a
#define __msp430_have_lcd_16_20
#define LCD_BASE 0x90
-#define __msp430_have_sd16a
#define __msp430_have_dac12_op_amp
#define __msp430_have_opamp_offset_cal
#define __msp430_have_opamp_switches
Index: msp430xG461x.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430xG461x.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -d -r1.8 -r1.9
--- msp430xG461x.h 17 Jun 2007 15:43:25 -0000 1.8
+++ msp430xG461x.h 9 Oct 2008 15:00:14 -0000 1.9
@@ -35,7 +35,7 @@
#define __MSP430_HAS_TA3__
#define __MSP430_HAS_TB7__
#define __MSP430_HAS_FLASH__
-#define __MSP430_HAS_CA__
+#define __MSP430_HAS_COMPA__
#define __MSP430_HAS_SVS__
#define __MSP430_HAS_ADC12__
#define __MSP430_HAS_DAC12__
@@ -57,6 +57,7 @@
#include <msp430/svs.h>
#include <msp430/lcd_a.h>
#include <msp430/flash.h>
+#include <msp430/compa.h>
#include <msp430/timera.h>
#include <msp430/timerb.h>
#include <msp430/usart.h>
Index: signal.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/signal.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -w -d -r1.15 -r1.16
--- signal.h 15 Nov 2006 14:34:57 -0000 1.15
+++ signal.h 9 Oct 2008 15:00:14 -0000 1.16
@@ -40,7 +40,7 @@
#define RESET_VECTOR 30
#endif
-#if !defined(_GNU_ASSEMBLER_)
+#if !defined(__ASSEMBLER__)
#define Interrupt(x) void __attribute__((interrupt (x)))
#define INTERRUPT(x) void __attribute__((interrupt (x)))
@@ -74,7 +74,7 @@
#define UNEXPECTED() interrupt (NOVECTOR) _unexpected_(void)
-#else /*_GNU_ASSEMBLER_ / assember definitions*/
+#else /*__ASSEMBLER__ / assember definitions*/
/* Double macro trick to achieve that the x gets expanded*/
#define interrupt(x) xinterrupt(x)
@@ -134,6 +134,6 @@
#define vector_30 vector_fffe
#endif
-#endif /*_GNU_ASSEMBLER_*/
+#endif /*__ASSEMBLER__*/
#endif
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/