[MODS/WASM]: Get tables, elems, data and more VM instructions working

This commit is contained in:
luccie-cmd 2025-08-05 22:59:41 +02:00
parent 5bd3e6c57b
commit a295365993
5 changed files with 381 additions and 64 deletions

View file

@ -1,19 +1,19 @@
pub extern fn logErr(
format: [*:0]const u8,
...,
string: *const u8,
len: u64,
) void;
pub extern fn logWarn(
format: [*:0]const u8,
...,
string: *const u8,
len: u64,
) void;
pub extern fn logInfo(
format: [*:0]const u8,
...,
string: *const u8,
len: u64,
) void;
pub extern fn logDebug(
format: [*:0]const u8,
...,
string: *const u8,
len: u64,
) void;