aboutsummaryrefslogtreecommitdiffstats
path: root/core.fth
diff options
context:
space:
mode:
Diffstat (limited to 'core.fth')
-rw-r--r--core.fth44
1 files changed, 41 insertions, 3 deletions
diff --git a/core.fth b/core.fth
index ed28e1f..b325e58 100644
--- a/core.fth
+++ b/core.fth
@@ -32,18 +32,56 @@
: -rot rot rot ;
: over 1 pick ;
+: 2drop drop drop ;
+: 2dup over over ;
+: 2over 3 pick 3 pick ;
+: 2swap rot >r rot r> ;
+
: +! dup >r swap r> @ + swap ! ;
: allot dp +! ;
: , here ! cell allot ;
+: c, here c! 1 allot ;
: ['] ' [ ' literal , ] ; immediate
-: 1+ 1 + ;
-: 1- 1 - ;
-
: if ['] _jmp0 , here 0 , ; immediate
: then here swap ! ; immediate
: else ['] _jmp , here 0 , swap here swap ! ; immediate
+: 2r> ['] r> , ['] r> , ['] swap , ; immediate
+: 2>r ['] swap , ['] >r , ['] >r , ; immediate
+: r@ ['] r> , ['] dup , ['] >r , ; immediate
+
+: 2! swap over ! cell+ ! ;
+: 2@ dup cell+ @ swap @ ;
+
+: 0= 0 = ;
+: 0< 0 < ;
+: <= 2dup < >r = r> or ;
+: > swap < ;
+: <> = 0= ;
+
+: 1+ 1 + ;
+: 1- 1 - ;
+
+: invert -1 xor ;
+: negate -1 * ;
+: 2* 2 * ;
+: _msb [ 1 cell 8 * 1- lshift ] literal ;
+: 2/ dup 1 rshift swap 0< if _msb or then ;
+
+: ?dup dup if dup then ;
+: abs dup 0< if negate then ;
+: min 2dup <= if drop else swap drop then ;
+: max 2dup <= if swap drop else drop then ;
+
+: aligned cell 1- + cell 1- invert and ;
+: align here dup aligned swap - allot ;
+
+: cr 10 emit ;
+: bl 32 ;
+: space bl emit ;
+\ : spaces begin dup 0 > while space 1- repeat drop ;
+
: decimal 10 base ! ;
: hex 16 base ! ;