home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
forth
/
compiler
/
fpc
/
pasm386
/
dm386.seq
< prev
next >
Wrap
Text File
|
1989-09-16
|
549b
|
27 lines
\ 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