adding the AGAIN control word
[rrq/rrqforth.git] / adoc / p_mult.adoc
1 // math.asm:    WORD p_mult, '*',fasm
2
3 anchor:p_mult[]
4
5 === Word: *
6
7 ....
8 Data stack: ( v1 v2 -- v3 )
9 ....
10
11 "*" is a function word that replaces a pair of values with the result
12 of multiplying them. To that end, the values are 64-bit signed
13 integers, and clipping the result to the least signifcant 64 bits.