summaryrefslogtreecommitdiff
path: root/src/parser.y
AgeCommit message (Collapse)Author
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.