From 257c1f9f875b9487310a1cffd3b0eb306fb71e8a Mon Sep 17 00:00:00 2001 From: Dan White Date: Sat, 8 Sep 2012 22:55:07 -0500 Subject: [PATCH] Add processor header --- msp4th/ns430.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 msp4th/ns430.h diff --git a/msp4th/ns430.h b/msp4th/ns430.h new file mode 100644 index 0000000..5ae006b --- /dev/null +++ b/msp4th/ns430.h @@ -0,0 +1,13 @@ +#if !defined(NS430) +#define NS430 + +#include + +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 -- 2.25.1