diff options
| author | kitty <nepeta@canaglie.net> | 2026-02-21 00:22:43 +1100 |
|---|---|---|
| committer | kitty <nepeta@canaglie.net> | 2026-02-21 00:22:43 +1100 |
| commit | 13b631bfde1c9e488b1827282fd9968371679472 (patch) | |
| tree | cc4912ae53c6d880bacb8aeed2be86695f5f7a51 | |
| parent | 5668025b71f63f4cfbc8d6341c220bae187fd593 (diff) | |
1+ 1-
| -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 {{{ |
