Update docs: tutorial and quickstart improvements for Audulus users#13
Closed
jersmi7 wants to merge 2 commits intoaudulus:mainfrom
Closed
Update docs: tutorial and quickstart improvements for Audulus users#13jersmi7 wants to merge 2 commits intoaudulus:mainfrom
jersmi7 wants to merge 2 commits intoaudulus:mainfrom
Conversation
New instruction set: [opcode:8][rA:4][rB:4] = 16 bits, 256 opcodes, 16 registers. Destructive 2-operand arithmetic (rA op= rB). Offset-encoded load/store opcodes for common struct field offsets (0-32 bytes) avoid trailing data words in hot loops. Pipeline: shared codegen/optimizer → 16-reg linear scan with spilling → 3-op to 2-op destructive lowering → pack to Vec<u16> → Rust dispatch loop. Phase 2 will add full opcode coverage and golden test equivalence. Phase 3 will add ARM64 assembly dispatch with all 16 VM registers pinned to CPU registers and a 65K-entry jump table. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
wtholliday
requested changes
Apr 20, 2026
Collaborator
wtholliday
left a comment
There was a problem hiding this comment.
The changes under src were probably not intended
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.
Corrections and additions based on practical experience writing Lyte in Audulus, including things discovered through iterative use of lyte-cli --check. Covers Audulus-specific patterns, Do's and Don'ts, and common pitfalls not covered in the existing docs.