瀏覽代碼

core: add word "MOVE"

pull/102/head
Virgil Dupras 4 年之前
父節點
當前提交
058b85686f
共有 2 個檔案被更改,包括 11 行新增0 行删除
  1. +2
    -0
      dictionary.txt
  2. +9
    -0
      forth/core.fs

+ 2
- 0
dictionary.txt 查看文件

@@ -98,6 +98,8 @@ C! c a -- Store byte c in address a
CURRENT -- a Set a to wordref of last added entry.
HERE -- a Push HERE's address
H@ -- a HERE @
MOVE a1 a2 u -- Copy u bytes from a1 to a2, starting with a1, going
up.

*** Arithmetic / Bits ***



+ 9
- 0
forth/core.fs 查看文件

@@ -118,3 +118,12 @@
( Set up initial SYSVNXT value, which is 2 bytes after its
own address )
46 RAM+ DUP 2 + SWAP !

( a1 a2 u -- )
: MOVE
( u ) 0 DO
SWAP DUP I + @ ( a2 a1 x )
ROT SWAP OVER I + ( a1 a2 x a2 )
! ( a1 a2 )
LOOP
;

Loading…
取消
儲存