diff options
author | bd <bdunahu@operationnull.com> | 2025-04-11 16:39:21 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-11 16:39:21 -0400 |
commit | 639098b1ea82be82bd18a4af415458fcbaf5e20b (patch) | |
tree | caecdd1499d2e391cd5bd2dcde3aebfade002a09 /src/util.lisp | |
parent | 5c9ac514d0556d875a12b2c7d3c4aedf23b9575b (diff) |
Add RET and NOP j-type instructions
Diffstat (limited to 'src/util.lisp')
-rw-r--r-- | src/util.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.lisp b/src/util.lisp index 8d98680..e52d7aa 100644 --- a/src/util.lisp +++ b/src/util.lisp @@ -76,5 +76,5 @@ of the elements from both lists. Returns nil if the lists are not equal size." "I-type instructions.") (defvar j-type - '("JMP" "JRL" "JAL" "BEQ" "BGT" "BUF" "BOF" "PUSH" "POP") + '("JMP" "JRL" "JAL" "BEQ" "BGT" "BUF" "BOF" "PUSH" "POP" "RET" "NOP") "J-type instructions.") |