bug fix for lpar comment
[rrq/rrqforth.git] / adoc / p_Ccomma.adoc
1 // compile.asm: WORD p_Ccomma,'C,',fasm
2
3 anchor:p_Ccomma[]
4
5 === Word: C,
6
7
8 ....
9 Data stack: ( v -- )
10 ....
11
12 "C," (C-comma) is a function word that puts a byte on the
13 <<p_here,HERE>> heap. The least significant byte of the value is put
14 at the current free head address, which also is incremented.
15
16 ====
17 .Definition concept for C,
18 ****
19 : C, HERE @ 1 ALLOT C! ;  ( v -- ; Claim 1 byte and put lsb value there )
20 ****
21 ====
22
23 See also <<p_colon,:>>, <<p_comma>>. <<p_here,HERE>>, <<p_get,@>>,
24 <<p_allot,ALLOT>>, <<p_Cput,C!>> and <<p_semicolon,;>>.