Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. FPU_Dot proc UseAll buf,obuf,count
  2.     mov esi,buf
  3.     mov edi,obuf
  4.     mov ecx,count
  5.    
  6.     @@:
  7.     fld real4 ptr[esi]
  8.     fmul ST,ST
  9.     fld real4 ptr[esi+4]
  10.     fmul ST,ST
  11.     fld real4 ptr[esi+8]
  12.     fmul ST,ST
  13.     add esi,16
  14.     fadd
  15.     fadd
  16.     fstp real4 ptr[edi]
  17.     add edi,4
  18.     dec ecx
  19.     jnz @B
  20.    
  21.    
  22.     ret
  23. FPU_Dot endp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement