VolksForth/sources/generic/double.fth
2020-07-26 13:22:46 +02:00

10 lines
168 B
Forth

\ Double Cell 32bit arithmetics words
.( load additional double 32bit words )
: D/ ( d u -- d ) \ floored result
SWAP OVER /MOD >R
SWAP UM/MOD SWAP DROP R> ;