From 7025f30be3b6cccf9f419daec9f0b7aeeaa2d6d3 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sun, 15 Mar 2026 20:59:54 -0400 Subject: refactor: Explicit register names & instructions 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. --- examples/instructions.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/instructions.s b/examples/instructions.s index 5379657..d3a7fab 100644 --- a/examples/instructions.s +++ b/examples/instructions.s @@ -2,7 +2,7 @@ add x5, x6, x7 sub x10, x11, x12 and x1, x2, x3 -sll x8, x9, x10o +sll x8, x9, x10 # I-Type addi x5, x6, 10 -- cgit v1.2.3