summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2026-03-15refactor: Explicit register names & instructionsJacob McDonnell
Explicit tokenization of register names and instructions. This forces stricter syntax conformance and prevents errors from slipping through. This also prevents the user from using these keywords as names other than for their intended use.
2026-03-15feat: Parsing modifiers and directivesJacob McDonnell
Support added for parsing a limited set of directives and for all access modifiers.
2026-03-14refactor!: Switched from x86_64 to RISC-VJacob McDonnell
Switched from x86_64 to RISC-V because RISC-V is a cleaner and simpler architecture and I'm more familiar with it since it's similar to MIPS. BREAKING CHANGE: Switched from x86_64 to RISC-V
2026-03-14feat: Initial parsing of instructionsJacob McDonnell
Initial ability to parse basic instructions. Currently hex numbers are broken and immediates with labels (movl $str, %ecx) are broken.