added tfa2namez
[rrq/rrqforth.git] / adoc / p_put_plus.adoc
1 // memory.asm:  WORD p_put_plus, '!+',fasm
2
3 anchor:p_put_plus[]
4
5 === Word: !+
6
7 ....
8 Data stack: ( a n -- )
9 ....
10
11 "!+" is a function word that adds n to the cell value at a.
12
13 ====
14 .definition concept for !+
15 ****
16 ( a n -- ) : !+ OVER @ + SWAP ! ;
17 ****
18 ====