summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorKeerthan Jaic <jckeerthan@gmail.com>2015-08-26 00:00:46 -0400
committerKeerthan Jaic <jckeerthan@gmail.com>2015-08-26 00:00:46 -0400
commit66ff1792fa803b305d66edc3e520c3a5e8d8d470 (patch)
treef1e2cd527e8ead8b5f752461cc8b3989e7e95ee3 /compiler
parentf091ce258e36e1346f9dfc2b31bbba334f64aec2 (diff)
downloadNim-66ff1792fa803b305d66edc3e520c3a5e8d8d470.tar.gz
add msp430 cpu support
Diffstat (limited to 'compiler')
-rw-r--r--compiler/platform.nim5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/platform.nim b/compiler/platform.nim
index c4e7d453a..8376c2b32 100644
--- a/compiler/platform.nim
+++ b/compiler/platform.nim
@@ -159,7 +159,7 @@ type
                      # alias conditionals to condsyms (end of module).
     cpuNone, cpuI386, cpuM68k, cpuAlpha, cpuPowerpc, cpuPowerpc64,
     cpuPowerpc64el, cpuSparc, cpuVm, cpuIa64, cpuAmd64, cpuMips, cpuMipsel,
-    cpuArm, cpuArm64, cpuJS, cpuNimrodVM, cpuAVR
+    cpuArm, cpuArm64, cpuJS, cpuNimrodVM, cpuAVR, cpuMSP430
 
 type
   TEndian* = enum
@@ -186,7 +186,8 @@ const
     (name: "arm64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64),
     (name: "js", intSize: 32, endian: bigEndian,floatSize: 64,bit: 32),
     (name: "nimrodvm", intSize: 32, endian: bigEndian, floatSize: 64, bit: 32),
-    (name: "avr", intSize: 16, endian: littleEndian, floatSize: 32, bit: 16)]
+    (name: "avr", intSize: 16, endian: littleEndian, floatSize: 32, bit: 16),
+    (name: "msp430", intSize: 16, endian: littleEndian, floatSize: 32, bit: 16)]
 
 var
   targetCPU*, hostCPU*: TSystemCPU