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();
});

語法

wat
nop
指令 二進位制操作碼
nop 0x01