Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
287B

  1. : +! TUCK @ + SWAP ! ;
  2. : *! ( addr alias -- ) 1+ ! ;
  3. : **! ( addr switch -- ) 1+ @ ! ;
  4. : / /MOD NIP ;
  5. : MOD /MOD DROP ;
  6. : ALLOT HERE +! ;
  7. : FILL ( a n b -- )
  8. SWAP 2 PICK + ( a b a+n ) ROT ( b a+n a ) DO ( b )
  9. DUP I C!
  10. LOOP DROP ;
  11. : ALLOT0 ( n -- ) H@ OVER 0 FILL ALLOT ;