CVS: msp430-libc/src gcrt0.S,1.9,1.10

Steve Underwood <[email protected]> Fri, 17 Nov 2006 04:31:22 -0800
Newsgroups gmane.comp.hardware.texas-instruments.msp430.gcc.cvs
Message-ID <[email protected]>
Update of /cvsroot/mspgcc/msp430-libc/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6466/msp430-libc/src

Modified Files:
	gcrt0.S 
Log Message:
Introduced 2 sizes for the interrupt vector table to suit the MSP430X
devices


Index: gcrt0.S
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/src/gcrt0.S,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -d -r1.9 -r1.10
--- gcrt0.S	26 Jan 2005 20:18:22 -0000	1.9
+++ gcrt0.S	17 Nov 2006 12:31:18 -0000	1.10
@@ -51,10 +51,30 @@
 
 .global InterruptVectors
         .type   InterruptVectors, @object
-	.size InterruptVectors, 0x20
-
 
+#if defined(__MSP430X__)
+	.size InterruptVectors, 0x40
+InterruptVectors:
+/* c0 */	VEC vector_ffc0
+/* c2 */	VEC vector_ffc2
+/* c4 */	VEC vector_ffc4
+/* c6 */	VEC vector_ffc6
+/* c8 */	VEC vector_ffc8
+/* ca */	VEC vector_ffca
+/* cc */	VEC vector_ffcc
+/* ce */	VEC vector_ffce
+/* d0 */	VEC vector_ffd0
+/* d2 */	VEC vector_ffd2
+/* d4 */	VEC vector_ffd4
+/* d6 */	VEC vector_ffd6
+/* d8 */	VEC vector_ffd8
+/* da */	VEC vector_ffda
+/* dc */	VEC vector_ffdc
+/* de */	VEC vector_ffde
+#else
+	.size InterruptVectors, 0x20
 InterruptVectors:
+#endif
 /* e0 */	VEC vector_ffe0
 /* e2 */	VEC vector_ffe2
 /* e4 */	VEC vector_ffe4
@@ -70,6 +90,6 @@
 /* f8 */	VEC vector_fff8
 /* fa */	VEC vector_fffa
 /* fc */	VEC vector_fffc
-
 		.word _reset_vector__
-/* end of Interrupt vectors decloration */
+
+/* end of Interrupt vectors declarations */


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV