aboutsummaryrefslogtreecommitdiff
path: root/BinaryEncoding.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2016-03-04 17:54:08 -0800
committerDan Gohman <sunfish@mozilla.com>2016-03-04 17:54:08 -0800
commit30fdfe890aa6ad904238c16f0ee77d9d36877f6b (patch)
treef6749322ad563446b5448e4642ceb3aad57f5958 /BinaryEncoding.md
parent0146d348c19c6f4032f6222eeabddfc6648cb93d (diff)
downloadnanowasm-design-30fdfe890aa6ad904238c16f0ee77d9d36877f6b.tar.gz
Change call_import to 0x1f.
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 80b14d6..71da872 100644
--- a/BinaryEncoding.md
+++ b/BinaryEncoding.md
@@ -318,7 +318,7 @@ out of range, `br_table` branches to the default target.
| `store_global` | `0x11` | index = `varuint32` | * nonstandard internal opcode |
| `call` | `0x12` | function_index = `varuint32` | call a function by its index |
| `call_indirect` | `0x13` | signature_index = `varuint32` | call a function indirect with an expected signature |
-| `call_import` | `0x09` | import_index = `varuint32` | call an imported function by its index |
+| `call_import` | `0x1f` | import_index = `varuint32` | call an imported function by its index |
## Memory-related operators ([described here](AstSemantics.md#linear-memory-accesses))