mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 16:35:03 +01:00
11 lines
200 B
Text
11 lines
200 B
Text
function main() = ;
|
|
|
|
function memcpy(dst: I32, src: I32, n: I32) =
|
|
___asm(
|
|
__locals(),
|
|
"local.get 2",
|
|
"local.get 1",
|
|
"local.get 0",
|
|
"memory.copy",
|
|
)
|
|
;
|