home *** CD-ROM | disk | FTP | other *** search
- \ 386 Double Precision Multiply
-
- \ Gene Czarcinski, 16sep89
-
- asm.386 \ full instruction set
- \ headerless
-
- CODE (D*) ( 'd2 'd1 -- 'dprod )
- pop eax
- pop ebx
- mul ebx
- push eax
- next
- END-CODE
-
- \ headers
-
- : D* ( d1 d2 -- dprod )
- swap 2swap swap \ setup
- (D*) \ do it
- swap ;
-
- \ behead
-
- asm.8086 \ revert to normal
-
-