home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 4398 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.1 KB

  1. Path: peer-news.britain.eu.net!uknet!news@Britain.EU.net
  2. From: Matthew Towler <Matthew.Towler@unicam.co.uk>
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: DICE with an `020
  5. Date: 28 Feb 1996 15:11:35 GMT
  6. Organization: EUnet-GB distributed news service, +44 227 266466
  7. Message-ID: <4h1rb7$d1v@bsdi201.britain.eu.net>
  8. NNTP-Posting-Host: 193.122.53.13
  9.  
  10. 68020 code is one of the improvements probably saved for the full version
  11. only.  It will be faster in some places due to the extra instructions and
  12. addressing modes available.  The multiply and index modes certainly make 
  13. array accesses much quicker.  Sines and Cosines are calculated by a polynomial
  14. expansion method and so the quicker floating point numbers can by multiplied and
  15. added the better. A 68882 can be accessed in 2 ways, firstly the maths libraries
  16. should realise one is available and use it, or DICE can explicitly include 
  17. instuctions.  This does have the drawback that it requires a 68882 to always be
  18. there, but is probably a bit quicker than the library calls for simple operations
  19. like add and multiply.
  20.