f+ ( r1 r2 -- r3 ) Add r1 to r2 giving the sum r3
f- ( r1 r2 -- r3 ) Subtract r2 from r1, giving r3
f* ( r1 r2 -- r3 ) Multiply r1 by r2 giving r3
f/ ( r1 r2 -- r3 ) Divide r1 by r2, giving the quotient r3
fsqrt ( r1 -- r2 ) r2 is the square root of r1
fabs ( r1 -- r2 ) r2 is the absolute value of r1
fnegate ( r1 -- r2 ) r2 is the negation of r1
fround ( r1 -- r2 ) round r1 to an integral value using the "round to nearest" rule, giving r2
fflags@ ( -- u ) get the current value of the Floating Point Status/Control register FPSCR
fflags! ( -- u ) assign the given value to the Floating Point Status/Control register FPSCR
f0= ( r -- ? ) flag is true if r is equal to zero
f0< ( r -- ? ) flag is true if r is less than zero
f< ( r1 r2 -- ? ) flag is true if r1 is less than r2 |