home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 5913 < prev    next >
Encoding:
Text File  |  1996-08-05  |  2.0 KB  |  50 lines

  1. Path: everest.vol.it!news
  2. From: bizzetti@mbox.vol.it (Fabio Bizzetti)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: Wolfenstein Texture mapping problem
  5. Date: 17 Mar 1996 23:15:20 GMT
  6. Organization: Video On Line
  7. Distribution: world
  8. Message-ID: <1669.6650T1194T2853@mbox.vol.it>
  9. References: <38232736@kone.fipnet.fi> <4hh592$8j6@serpens.rhein.de> <38233038@kone.fipnet.fi>
  10. NNTP-Posting-Host: molcl7.vol.it
  11. X-Newsreader: THOR 2.22 (Amiga;TCP/IP)
  12.  
  13.  
  14. >> >> I do write into a fastram buffer and then copy it to the card ram
  15. >> >>áwith  word writes. The Picasso is ZII, so word writes are better than 
  16. >> >>ábyte writes. I can directly access the picasso memory, as a linear 
  17. >> 
  18. >> >The question is, why not longword copies?
  19. >> 
  20. >> Because a word write might interleave with other bus cycles.
  21.  
  22. >How about this?
  23.  
  24. >        move.l  (a0)+,d0        ;chunky buffer, 4 pixels
  25. >        move.w  d0,(a1)+        ;Picasso memory
  26.  
  27.     SWAP    D0        ;you forgot, and it's 4 cicles on 68020/68030..
  28.  
  29. >        move.w  d0,(a1)+
  30.  
  31. >Might, yes.. But I think that 3.5MB/s to ZII can be had with
  32. >both move.l (a0)+,(a1)+ or move.l (a0)+,d0; 
  33. >move.w d0,(a1)+; move.w d0,(a1)+.
  34.  
  35.  
  36. ------------------------------------------------------------------------------
  37. |                                                                            |
  38. |           Stop that fucking imperialist embargo against Cuba.              |
  39. |                 Hasta Siempre Comandante Che Guevara.                      |
  40. |                                                                            |
  41. |                                                                            |
  42. |    Fabio "Maverick" Bizzetti - bizzetti@mbox.vol.it - Maverick* at IRC     |
  43. |              The maker of "CyberMan" and "Virtual Karting"                 |
  44. |   working on "Virtual Rally" and "StarFighter", the 3D game that will      |
  45. |                        bring the Amiga to the top                          |
  46. |                                                                            |
  47. ------------------------------------------------------------------------------
  48.  
  49.  
  50.