bug fix for double quote
[rrq/rrqforth.git] / adoc / p_greaterequal.adoc
1 // logic.asm:   WORD p_greaterequal, '>=',fasm
2
3 anchor:p_greaterequal[]
4
5 === Word: >=
6
7 ....
8 Data stack: ( v1 v2 -- 0/-1 )
9 ....
10
11 ">=" is a function word that replaces a pair of values with -1 if the
12 first, v1, is greater than or equal to the second, v1, otherwise 0. To
13 that end, the values are 64-bit signed integers.