Conversation
Move biome and release-plz into tools/config, and build/test/benchmark/manual/browser tooling into tools/scripts. Keep a thin root biome.json that only extends the real config so Biome can still resolve the project root. Closes #16 Co-authored-by: Cursor <[email protected]>
Introduce BlockDevice and BlockFS with an inode table, free-block set, and MemoryFS-compatible API so createShell can mount either backend. Persist across remounts from the same ArrayBuffer. Closes #17 Co-authored-by: Cursor <[email protected]>
Ship LinearMemory, a register/flags file, and an interpreter covering MOV/ALU/JMP/Jcc/CALL/RET/PUSH/POP/LEA/INC/DEC/NOP/SYSCALL for toy programs. Fail closed on unsupported encodings. Closes #18 Co-authored-by: Cursor <[email protected]>
Share LinearMemory/flags with the x86 core and interpret MOVZ/MOVK, ADD/SUB, logic ops, LDR/STR, B/B.cond/BL/RET, NOP, and SVC for toy programs. Closes #19 Co-authored-by: Cursor <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Provide an honest browser-native guest path without claiming complete Linux, BSD, ISA, or raw-socket compatibility.
Changes
Verification
Risks
This remains a documented instruction/syscall subset, not a distribution boot environment. Browser WebSockets may include ambient cookies, raw TCP/UDP requires a relay, mprotect does not enforce page permissions, and v86/source URLs remain host policy.
Rollback
Revert bed3189.
Closes #20
Closes #21
Refs #22
Refs #23
Refs #24
Refs #5