summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--compiler/platform.nim5
-rw-r--r--lib/system/platforms.nim2
2 files changed, 5 insertions, 2 deletions
diff --git a/compiler/platform.nim b/compiler/platform.nim
index ef1d00e08..e1003a385 100644
--- a/compiler/platform.nim
+++ b/compiler/platform.nim
@@ -181,7 +181,7 @@ type
     cpuNone, cpuI386, cpuM68k, cpuAlpha, cpuPowerpc, cpuPowerpc64,
     cpuPowerpc64el, cpuSparc, cpuVm, cpuIa64, cpuAmd64, cpuMips, cpuMipsel,
     cpuArm, cpuArm64, cpuJS, cpuNimVM, cpuAVR, cpuMSP430, cpuSparc64,
-    cpuMips64, cpuMips64el, cpuRiscV64
+    cpuMips64, cpuMips64el, cpuRiscV64, cpuWasm32
 
 type
   TEndian* = enum
@@ -213,7 +213,8 @@ const
     (name: "sparc64", intSize: 64, endian: bigEndian, floatSize: 64, bit: 64),
     (name: "mips64", intSize: 64, endian: bigEndian, floatSize: 64, bit: 64),
     (name: "mips64el", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64),
-    (name: "riscv64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64)]
+    (name: "riscv64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64),
+    (name: "wasm32", intSize: 32, endian: littleEndian, floatSize: 64, bit: 32)]
 
 type
   Target* = object
diff --git a/lib/system/platforms.nim b/lib/system/platforms.nim
index 31d2cb01e..80a21cd0b 100644
--- a/lib/system/platforms.nim
+++ b/lib/system/platforms.nim
@@ -32,6 +32,7 @@ type
     avr,                       ## AVR based processor
     msp430,                    ## TI MSP430 microcontroller
     riscv64                    ## RISC-V 64-bit processor
+    wasm32                     ## WASM, 32-bit
 
   OsPlatform* {.pure.} = enum ## the OS this program will run on.
     none, dos, windows, os2, linux, morphos, skyos, solaris,
@@ -87,5 +88,6 @@ const
                elif defined(avr): CpuPlatform.avr
                elif defined(msp430): CpuPlatform.msp430
                elif defined(riscv64): CpuPlatform.riscv64
+               elif defined(wasm32): CpuPlatform.wasm32
                else: CpuPlatform.none
     ## the CPU this program will run on.