virtual-machine 0.0.23 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.ts
CHANGED
|
@@ -18,6 +18,15 @@ declare class WasmVm {
|
|
|
18
18
|
* Get a byte from the UART output buffer, if available.
|
|
19
19
|
*/
|
|
20
20
|
get_output(): number | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* Print the VM banner to UART output (visible in browser).
|
|
23
|
+
* Call this after creating the VM to show a boot banner.
|
|
24
|
+
*/
|
|
25
|
+
print_banner(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Print a status message to UART output (visible in browser).
|
|
28
|
+
*/
|
|
29
|
+
print_status(message: string): void;
|
|
21
30
|
/**
|
|
22
31
|
* Get the current network connection status.
|
|
23
32
|
* This checks the actual connection state by seeing if an IP was assigned.
|
|
@@ -31,6 +40,11 @@ declare class WasmVm {
|
|
|
31
40
|
* Disconnect from the network.
|
|
32
41
|
*/
|
|
33
42
|
disconnect_network(): void;
|
|
43
|
+
/**
|
|
44
|
+
* Check how many bytes are pending in the UART output buffer.
|
|
45
|
+
* Useful for debugging output issues.
|
|
46
|
+
*/
|
|
47
|
+
uart_output_pending(): number;
|
|
34
48
|
/**
|
|
35
49
|
* Connect to a WebTransport relay server.
|
|
36
50
|
* Note: Connection is asynchronous. Check network_status() to monitor connection state.
|
|
@@ -80,12 +94,15 @@ interface InitOutput {
|
|
|
80
94
|
readonly wasmvm_load_disk: (a: number, b: number, c: number) => void;
|
|
81
95
|
readonly wasmvm_network_status: (a: number) => number;
|
|
82
96
|
readonly wasmvm_new: (a: number, b: number) => [number, number, number];
|
|
97
|
+
readonly wasmvm_print_banner: (a: number) => void;
|
|
98
|
+
readonly wasmvm_print_status: (a: number, b: number, c: number) => void;
|
|
83
99
|
readonly wasmvm_step: (a: number) => number;
|
|
84
|
-
readonly
|
|
85
|
-
readonly
|
|
100
|
+
readonly wasmvm_uart_output_pending: (a: number) => number;
|
|
101
|
+
readonly wasm_bindgen__convert__closures_____invoke__hcb213e7f52b31168: (a: number, b: number) => void;
|
|
102
|
+
readonly wasm_bindgen__closure__destroy__ha64c5484eb0bd270: (a: number, b: number) => void;
|
|
86
103
|
readonly wasm_bindgen__convert__closures_____invoke__h6709295d3f31b919: (a: number, b: number, c: any) => void;
|
|
87
104
|
readonly wasm_bindgen__closure__destroy__hb099e2ae98169675: (a: number, b: number) => void;
|
|
88
|
-
readonly
|
|
105
|
+
readonly wasm_bindgen__convert__closures_____invoke__hb7783920f48cbf0e: (a: number, b: number) => void;
|
|
89
106
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
90
107
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
91
108
|
readonly __wbindgen_exn_store: (a: number) => void;
|