From 13b631bfde1c9e488b1827282fd9968371679472 Mon Sep 17 00:00:00 2001 From: kitty Date: Sat, 21 Feb 2026 00:22:43 +1100 Subject: 1+ 1- --- jefs.s | 9 +++++++++ 1 file changed, 9 insertions(+) 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 {{{ -- cgit v1.2.3