diff options
| author | JF Bastien <github@jfbastien.com> | 2016-03-01 16:58:48 -0500 |
|---|---|---|
| committer | JF Bastien <github@jfbastien.com> | 2016-03-01 16:58:48 -0500 |
| commit | e7c0ac5aac60fb7745532074a8a38ac0bbec6bc4 (patch) | |
| tree | 885de85325d7c0d8bc8a046c5e31e569953c7557 /BinaryEncoding.md | |
| parent | 28911a25114a4543a1eef36259e6d0341e904168 (diff) | |
| parent | e7fcfb8a5d07933a649cadea641e88d403f1f384 (diff) | |
| download | nanowasm-design-e7c0ac5aac60fb7745532074a8a38ac0bbec6bc4.tar.gz | |
Merge pull request #574 from naturaltransformation/patch-4
Moving magic number value from Type to Desc column
Diffstat (limited to 'BinaryEncoding.md')
| -rw-r--r-- | BinaryEncoding.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md index ae67eb5..926f744 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -78,7 +78,7 @@ The module starts with a magic number and version as follows. | Field | Type | Description | | ----- | ----- | ----- | -| magic number | `uint32 0x6d736100` | Magic number '\0asm' | +| magic number | `uint32` | Magic number `0x6d736100` (i.e., '\0asm') | | version | `uint32` | Version number, currently 10. The version for MVP will be reset to 1. | This is followed by a sequence of sections. Sections can in general be repeated, but some can occur only once or have dependent sections that must preceed them but not immediately as unknown sections can occur in any order. Each section is identified by an immediate string. Sections whose identity is unknown to the WebAssembly implementation are ignored and this is supported by including the size in bytes for all sections. The encoding of all sections begins as follows: |
