major touch-up into presentable form
[rrq/rrqforth.git] / adoc / p_not.adoc
1 // logic.asm:   WORD p_not, 'NOT',fasm
2
3 anchor:p_not[]
4
5 === Word: NOT
6
7 ....
8 Data stack: ( v1 -- v2 )
9 ....
10
11 "NOT" is a function word that replaces a value with its bitwise 
12 complement; each bit is zero if non-zero, and non-zero if zero.
13
14 Compare with <<p_0equal,0=>>.