nop
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 |