Memory 64 support

This commit is contained in:
momo5502
2025-07-09 17:58:47 +02:00
parent adb94f37bd
commit b7dc284a9d
8 changed files with 66 additions and 10 deletions

View File

@@ -5,6 +5,7 @@ export interface Settings {
bufferStdout: boolean;
persist: boolean;
execAccess: boolean;
wasm64: boolean;
}
export function createDefaultSettings(): Settings {
@@ -15,6 +16,7 @@ export function createDefaultSettings(): Settings {
bufferStdout: true,
persist: false,
execAccess: true,
wasm64: false,
};
}