nop:Wasm 文本指令
nop 代表没有操作(no-operation)。就是字面意思什么也不做。
(module
(func (export "do_nothing")
nop
)
)
const url = "{%wasm-url%}";
await WebAssembly.instantiateStreaming(fetch(url)).then((result) => {
result.instance.exports.do_nothing();
});
nop
| 指令 | 二进制操作码 |
|---|---|
nop |
0x01 |