various improvements
[rrq/rrqforth.git] / adoc / p_rbpn.adoc
1 // stack.asm:   WORD p_rbpn, 'R[n]',fasm
2
3 anchor:p_rbpn[]
4
5 === Word: R[n]
6
7 ....
8 Data stack: ( n -- a )
9 ....
10
11 "R[n]" is a function word that pushes the address for the n:th cell on
12 the top return stack value onto the data stack.
13
14 ====
15 .Defintion concept for R[n]
16 ****
17 ( n -- a ) : R[n] 8 * RSP + ;
18 ****
19 ====