disable all breakpoints initially
[rrq/rrqforth.git] / adoc / p_negate.adoc
index b47e603c314df13d81c425f99d6f645a28715fe1..6c65a15b17ea7e9619f58f831014ddc747efa886 100644 (file)
@@ -1,9 +1,13 @@
+// math.asm:   WORD p_negate, 'NEGATE',fasm
+
 anchor:p_negate[]
 
-Word: NEGATE
-----------
+=== Word: NEGATE
 
-----
-math.asm:      WORD p_negate, 'NEGATE',fasm
-----
+....
+Data stack: ( v1 -- v2 )
+....
 
+"NEGATE" is a function word that replaces a value with its
+2's-complement negation. To that end, the values are 64-bit signed
+integers.