Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ members = [
"out/sbaitso/sbtalker",
"out/thread",
"out/winapi",
"out/winpin",
"out/zig_hello",
"runtime",
"tc",
Expand Down
4 changes: 2 additions & 2 deletions build-wasm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -e

Expand Down Expand Up @@ -28,7 +28,7 @@ fi


desired="$1"
for package in winapi-exe mine basicdd; do
for package in winapi-exe mine basicdd winpin; do
file=$(sed -e 's/-exe//' <<< "$package")
if [[ "$desired" != "" && "$desired" != "$file" ]]; then
continue
Expand Down
1 change: 1 addition & 0 deletions dos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ pub fn load(exe: &EXEData, command_line: Option<&str>) -> Context {
thread_id: 1,
memory,
blocks: exe.blocks,
cache: Default::default(),
recent: [Context::return_from_x86; 4],
};
ctx.cpu.real_mode = true;
Expand Down
1 change: 1 addition & 0 deletions host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2024"

[dependencies]
bitflags = { workspace = true }
log = { workspace = true }
logger = { workspace = true }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
Expand Down
Loading