added the left-parenthesis word (comments)
[rrq/rrqforth.git] / adoc / p_Ccomma.adoc
1 Word: C,
2 --------
3 anchor:p_Ccomma[]
4 ----
5 compile.asm:    WORD p_Ccomma,'C,',fasm
6 ----
7
8 Data stack: ( v -- )
9
10 "C," is a function word that puts a byte on the heap. It stores the
11 least significant byte of the value to the current free heap address,
12 and increments that.
13
14 .Execution semantics expressed in RRQFORTH
15 ====
16 : C,
17   HERE @ 1 ALLOT C! ( v -- ; Claim 1 byte and put lsb value there )
18 ;
19 ====
20