diff options
| -rw-r--r-- | jefs.s | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 {{{ |
