* 2CONSTANT ( x1 x2 "name" -- ) create a word that contains the specified twocell number in its body. when the name is executed, these numbers are left on the stack 12. 2CONSTANT X .s ok X .s 0 12 ok
2CONSTANT
( x1 x2 "name" -- )
12. 2CONSTANT X .s ok X .s 0 12 ok
FORTH/ANS double (dpANS8.6.1.0360) defining primitive
* 2VARIABLE ( -- ) CREATE a new variable definition. When executed leave the >BODY address on stack. In pfe, the data area of a 2VARIABLE is ERASEd initially.
2VARIABLE
( -- )
CREATE
>BODY
ERASE
FORTH/ANS double (dpANS8.6.1.0440) defining primitive
* 2LITERAL ( x1 x2 -- ) immediate compile a double-cell number to the current definition. When run, the doubele-cell is left on the stack for execution. ( -- x1 x2 ) (in most configurations this word is statesmart and it will do nothing in interpret-mode. See 2LITERAL, for a non-immediate variant)
2LITERAL
( x1 x2 -- )
immediate
( -- x1 x2 )
2LITERAL,
FORTH/ANS double (dpANS8.6.1.0390) compiling primitive
* D+ ( d1.ud1 d2.ud2 -- d3.ud3 ) the double-cell sum operation ( + )
D+
( d1.ud1 d2.ud2 -- d3.ud3 )
+
FORTH/ANS double (dpANS8.6.1.1040) ordinary primitive
D-
[] no special info, see general notes
FORTH/ANS double (dpANS8.6.1.1050) ordinary primitive
* D. ( d1.d1 -- ) freefield output for a double-cell number ( . )
D.
( d1.d1 -- )
.
FORTH/ANS double (dpANS8.6.1.1060) ordinary primitive
* D.R ( d1.d1 n -- ) aligned output for a double-cell number ( .R )
D.R
( d1.d1 n -- )
.R
FORTH/ANS double (dpANS8.6.1.1070) ordinary primitive
* D0< ( d1.d1 -- flag ) the double-cell less-than-zero operation ( 0< )
D0<
( d1.d1 -- flag )
0<
FORTH/ANS double ordinary primitive
* D0= ( d1.d1 -- flag ) the double-cell equal-to-zero operation ( 0= )
D0=
0=
FORTH/ANS double (dpANS8.6.1.1080) ordinary primitive
* D2* ( d1.d1 -- d1.d1' ) the double-cell arithmetic shiftleft-by-1 operation ( 2* )
D2*
( d1.d1 -- d1.d1' )
2*
FORTH/ANS double (dpANS8.6.1.1090) ordinary primitive
* D2/ ( d1.d1 -- d1.d1' ) the double-cell arithmetic shiftright-by-1 operation ( 2/ )
D2/
2/
FORTH/ANS double (dpANS8.6.1.1100) ordinary primitive
* D< ( d1.d1 d2.d2 -- flag ) the double-cell is-less operation ( < )
D<
( d1.d1 d2.d2 -- flag )
<
* D= ( d1.d1 d2.d2 -- flag ) the double-cell is-equal operation ( = )
D=
=
FORTH/ANS double (dpANS8.6.1.1120) ordinary primitive
* D>S ( d.d -- n ) result is the numeric equivalent of d. If the double number was greater than what could fit into a single cell number, the modulo cellsize will be left since the higher-significant bits are just DROPed
D>S
( d.d -- n )
DROP
* DABS ( d1.d1 -- d1.d1' ) the double-cell abs operation ( ABS )
DABS
ABS
FORTH/ANS double (dpANS8.6.1.1160) ordinary primitive
* DMAX ( d1.d1 d2.d2 -- d1.d1|d2.d2 ) the double-cell max operation ( MAX )
DMAX
( d1.d1 d2.d2 -- d1.d1|d2.d2 )
MAX
FORTH/ANS double (dpANS8.6.1.1210) ordinary primitive
* DMIN ( d1.d1 d2.d2 -- d1.d1|d2.d2 ) the double-cell max operation ( MIN )
DMIN
MIN
FORTH/ANS double (dpANS8.6.1.1220) ordinary primitive
* DNEGATE ( d1.d1 -- d1.d1' ) the double-cell arithmetic negate operation ( NEGATE )
DNEGATE
NEGATE
FORTH/ANS double (dpANS8.6.1.1230) ordinary primitive
M*/
FORTH/ANS double (dpANS8.6.1.1820) ordinary primitive
* M+ ( d1.d1 n1 -- d2.d2 ) the double-cell mixed-operand sum operation ( + / D+ )
M+
( d1.d1 n1 -- d2.d2 )
FORTH/ANS double (dpANS8.6.1.1830) ordinary primitive
ENVIRONMENT DOUBLE-EXT
ENVIRONMENT double ordinary constant
* ENVIRONMENT MAX-D ( -- d.d ) ENVIRONMENT definition to check with ENVIRONMENT? if the double-cell wordset is present, the signed-max number is left.
ENVIRONMENT MAX-D
( -- d.d )
ENVIRONMENT
ENVIRONMENT?
ENVIRONMENT double ordinary primitive
ENVIRONMENT MAX-UD