additional part-cell primitives
[rrq/rrqforth.git] / adoc / p_Dcomma.adoc
1 // compile.asm: WORD p_Dcomma,'D,',fasm
2
3 anchor:p_Dcomma[]
4
5 === Word: D,
6
7
8 ....
9 Data stack: ( v -- )
10 ....
11
12 "D," (D-comma) is a function word that puts a "double word"
13 (double-byte) on the <<p_here,HERE>> heap. The four least significant
14 bytes of the value are put at the current free head address, which
15 also is incremented accordingly.
16
17 ====
18 .Definition concept for D,
19 ****
20 : D, HERE @ 4 ALLOT D! ;
21 ****
22 ====
23