aboutsummaryrefslogtreecommitdiff
path: root/BinaryEncoding.md
diff options
context:
space:
mode:
authortitzer <titzer@google.com>2016-02-11 15:46:24 +0100
committertitzer <titzer@google.com>2016-02-11 15:46:24 +0100
commita2072993c67cb1cb773129800e50dc08ea2c3c89 (patch)
treee1bcb82dcd1600e561d675e08969ab909abfdb4e /BinaryEncoding.md
parent2f64313c57309d2c21ab07ef47ad7403da56fd4b (diff)
downloadnanowasm-design-a2072993c67cb1cb773129800e50dc08ea2c3c89.tar.gz
Update BinaryEncoding.md
Diffstat (limited to 'BinaryEncoding.md')
-rw-r--r--BinaryEncoding.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md
index 9f42f61..940c962 100644
--- a/BinaryEncoding.md
+++ b/BinaryEncoding.md
@@ -236,7 +236,7 @@ The table switch operator is then immediately followed by `case_count` case expr
## Basic operators ([described here](AstSemantics.md#constants))
| Name | Opcode | Immediate | Description |
| ---- | ---- | ---- | ---- |
-| `i8.const` | `0x09` | value = `uint8` | a constant value, signed extended to type `i32` |
+| `i8.const` | `0x09` | value = `int8` | a constant value, signed extended to type `i32` |
| `i32.const` | `0x0a` | value = `uint32` | a constant value interpreted as `i32` |
| `i64.const` | `0x0b` | value = `uint64` | a constant value interpreted as `i64` |
| `f64.const` | `0x0c` | value = `uint64` | a constant value interpreted as `f64` |