diff options
author | bd <bdunahu@operationnull.com> | 2025-05-11 03:54:33 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-11 03:54:33 -0400 |
commit | 66d24b85ece18eb3b6bd92469b630fc2e8b3a4a9 (patch) | |
tree | aefa50bebe0bc4915070cd4417ad54ea05d2af5a /src/parse.lisp | |
parent | 10d72fe1e3586e214353b4b942388335bc13f404 (diff) |
Part one reformat SRDL and SRDS instruction signature
Diffstat (limited to 'src/parse.lisp')
-rw-r--r-- | src/parse.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.lisp b/src/parse.lisp index e40487f..2b2f356 100644 --- a/src/parse.lisp +++ b/src/parse.lisp @@ -106,8 +106,8 @@ (generate-mnemonic 'r-type-3-m type-3)) (let* ((lst (reverse util:i-type)) - (type-1 '("SRDL" "LOAD")) - (type-2 '("SRDS" "STORE")) + (type-1 '("LOAD")) + (type-2 '("STORE")) (type-3 (remove-if (lambda (x) (member x (append type-1 type-2))) lst))) (generate-mnemonic 'i-type-1-m type-1) (generate-mnemonic 'i-type-2-m type-2) |