Add processor header
authorDan White <dan@whiteaudio.com>
Sun, 9 Sep 2012 03:55:07 +0000 (22:55 -0500)
committerDan White <dan@whiteaudio.com>
Sun, 9 Sep 2012 03:55:07 +0000 (22:55 -0500)
msp4th/ns430.h [new file with mode: 0644]

diff --git a/msp4th/ns430.h b/msp4th/ns430.h
new file mode 100644 (file)
index 0000000..5ae006b
--- /dev/null
@@ -0,0 +1,13 @@
+#if !defined(NS430)
+#define NS430
+
+#include <signal.h>
+
+typedef unsigned char uint8_t;
+typedef signed char int8_t;
+typedef unsigned int uint16_t;
+typedef signed int int16_t;
+
+typedef __attribute__((aligned (2))) uint8_t str_t;
+
+#endif