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 line
221B

  1. ( Same as MOVE, but with A@ and A! )
  2. ( src dst u -- )
  3. : AMOVE
  4. ( u ) 0 DO
  5. SWAP DUP I + A@ ( dst src x )
  6. ROT TUCK I + ( src dst x dst )
  7. A! ( src dst )
  8. LOOP
  9. 2DROP
  10. ;