Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
441 B

  1. title fylog2x - Danny's cheapo y*log2(x)
  2. ;***
  3. ;fylog2x.asm - compute y * log2(x)
  4. ;
  5. ; Copyright (c) 1996 Microsoft Corporation
  6. ;
  7. ;Purpose:
  8. ;
  9. ;*******************************************************************************
  10. .xlist
  11. include cruntime.inc
  12. .list
  13. CODESEG
  14. fylog2x proto stdcall, y:qword, x:qword
  15. public fylog2x
  16. fylog2x proc stdcall, y:qword, x:qword
  17. fld y
  18. fld x
  19. fyl2x
  20. ret
  21. fylog2x endp
  22. end