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/util.lisp | |
parent | 10d72fe1e3586e214353b4b942388335bc13f404 (diff) |
Part one reformat SRDL and SRDS instruction signature
Diffstat (limited to 'src/util.lisp')
-rw-r--r-- | src/util.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.lisp b/src/util.lisp index 85076d1..25b867b 100644 --- a/src/util.lisp +++ b/src/util.lisp @@ -84,11 +84,11 @@ of the elements from both lists. Returns nil if the lists are not equal size." (defvar r-type '("ADD" "SUB" "MUL" "QUOT" "REM" "SFTR" "SFTL" "AND" "OR" - "NOT" "XOR" "ADDV" "SUBV" "MULV" "DIVV" "CMP" "CEV") + "NOT" "XOR" "ADDV" "SUBV" "MULV" "DIVV" "CMP" "CEV" "SRDL" "SRDS") "R-type instructions.") (defvar i-type - '("LOAD" "SRDL" "ADDI" "SUBI" "SFTRI" "SFTLI" "ANDI" "ORI" "XORI" "STORE" "SRDS") + '("LOAD" "ADDI" "SUBI" "SFTRI" "SFTLI" "ANDI" "ORI" "XORI" "STORE") "I-type instructions.") (defvar j-type |