mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-15 00:45:04 +01:00
11 lines
245 B
Text
11 lines
245 B
Text
mod alloc;
|
|
|
|
// The function parameters are not actually unused.
|
|
function memcpy(_dst: I32, _src: I32, _n: I32) =
|
|
___asm(
|
|
__locals(),
|
|
"local.get 2",
|
|
"local.get 1",
|
|
"local.get 0",
|
|
"memory.copy",
|
|
);
|