diff options
author | Andrew Wygle <awygle@gmail.com> | 2017-06-02 13:06:29 -0700 |
---|---|---|
committer | Andrew Wygle <awygle@gmail.com> | 2017-06-02 13:06:29 -0700 |
commit | 68d0cfd0e070b680ab666f24070ba9b38f448624 (patch) | |
tree | 840d7901f1405e5bfe7c8e6c898a27e89f52bf9e /config/target.in | |
parent | 259173bb5e5f89a75b3e29174dd02fa7f74ec333 (diff) | |
download | crosstool-ng-68d0cfd0e070b680ab666f24070ba9b38f448624.tar.gz crosstool-ng-68d0cfd0e070b680ab666f24070ba9b38f448624.tar.bz2 crosstool-ng-68d0cfd0e070b680ab666f24070ba9b38f448624.zip |
Added MSP430 architecture support.
Signed-off-by: Andrew Wygle <awygle@gmail.com>
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/target.in b/config/target.in index 7e4e837a..2ce8aa3f 100644 --- a/config/target.in +++ b/config/target.in @@ -132,6 +132,9 @@ config ARCH_ENDIAN config ARCH_SUPPORTS_8 bool +config ARCH_SUPPORTS_16 + bool + config ARCH_SUPPORTS_32 bool @@ -165,6 +168,11 @@ config ARCH_8 prompt "8-bit" depends on ARCH_SUPPORTS_8 +config ARCH_16 + bool + prompt "16-bit" + depends on ARCH_SUPPORTS_16 + config ARCH_32 bool prompt "32-bit" |