summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jefs.s9
1 files changed, 9 insertions, 0 deletions
diff --git a/jefs.s b/jefs.s
index e24f955..03dd963 100644
--- a/jefs.s
+++ b/jefs.s
@@ -721,6 +721,15 @@ defword "2drop", twodrop, 0
defword "rdrop", rdrop, 0
pop r11
ret
+
+; not sure if this is the right place to put this but
+defword "1+", oneplus, 0
+ inc qword [r14]
+ ret
+
+defword "1-", oneminus, 0
+ dec qword [r14]
+ ret
; }}}
; math {{{