home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / msdos / programm / 8971 < prev    next >
Encoding:
Text File  |  1992-09-01  |  1.3 KB  |  30 lines

  1. Newsgroups: comp.os.msdos.programmer
  2. Path: sparky!uunet!cs.utexas.edu!torn!news.ccs.queensu.ca!slip01.telnet1.QueensU.CA!dmurdoch
  3. From: dmurdoch@mast.queensu.ca (Duncan Murdoch)
  4. Subject: Re: WANTED again:64bits(double long) arthmetics
  5. Message-ID: <dmurdoch.56.715400011@mast.queensu.ca>
  6. Lines: 18
  7. Sender: news@knot.ccs.queensu.ca (Netnews control)
  8. Organization: Queen's University
  9. References: <1992Sep1.053802.3664@sparc4.ncu.edu.tw>
  10. Date: Wed, 2 Sep 1992 02:13:31 GMT
  11.  
  12. In article <1992Sep1.053802.3664@sparc4.ncu.edu.tw> cs8023@ee21.ncu.edu.tw (ee76536) writes:
  13. >Hi, all assembly lang experters:
  14. >
  15. >I recently search a fast 64bit (double long) arthmetics,
  16. >if you have any idea on which books/documents/tools, please inform
  17. >me, thanks anyway.
  18.  
  19. That's a type supported in hardware in the 80x87 coprocessors.  I don't 
  20. think all of the basic integer operations are provided, but they shouldn't 
  21. be hard to write if you use the FPU instructions.  Look up those with 
  22. mnemonics FIxxx for integer support, and remember that internally, 
  23. everything is done in floating point - so you might need some FRNDINT 
  24. instructions if you don't save intermediate values to memory.
  25.  
  26. In Turbo Pascal this is called the Comp type, in the Intel 486 manual, it's 
  27. called a long integer.  Your compiler could call it anything.
  28.  
  29. Duncan Murdoch
  30.