mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 06:30:55 +11:00
7 lines
207 B
Plaintext
7 lines
207 B
Plaintext
|
: AMOVEW ( src dst u -- )
|
||
|
( u ) 0 DO
|
||
|
SWAP DUP I 1 LSHIFT + A@ ( dst src x )
|
||
|
ROT TUCK I 1 LSHIFT + ( src dst x dst )
|
||
|
A! ( src dst )
|
||
|
LOOP 2DROP ;
|