summaryrefslogtreecommitdiff
path: root/src/util.lisp
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-11 16:39:21 -0400
committerbd <bdunahu@operationnull.com>2025-04-11 16:39:21 -0400
commit639098b1ea82be82bd18a4af415458fcbaf5e20b (patch)
treecaecdd1499d2e391cd5bd2dcde3aebfade002a09 /src/util.lisp
parent5c9ac514d0556d875a12b2c7d3c4aedf23b9575b (diff)
Add RET and NOP j-type instructions
Diffstat (limited to 'src/util.lisp')
-rw-r--r--src/util.lisp2
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.")