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

  1. Path: news.eunet.fi!fipnet!kone!jsaarinen
  2. Newsgroups: comp.sys.amiga.programmer
  3. X-NewsReader: IntuiNews 1.2b (31.7.94)
  4. References: <38232736@kone.fipnet.fi> <4hh592$8j6@serpens.rhein.de>
  5. From: "Jyrki Saarinen" <jsaarinen@kone.fipnet.fi>
  6. Date: Sat, 16 Mar 96 12:30:10 UT
  7. Comments: Illegal date header - new date added by quicknews
  8. X-Original-Date: Fri, 15 Mar 96 17:55:51 
  9. MIME-Version: 1.0
  10. Content-Type: text/plain; charset=iso-8859-1
  11. Content-Transfer-Encoding: binary
  12. Subject: Re: Wolfenstein Texture mapping problem
  13. Message-ID: <38233038@kone.fipnet.fi>
  14.  
  15.  
  16. > >> I do write into a fastram buffer and then copy it to the card ram
  17. > >>áwith  word writes. The Picasso is ZII, so word writes are better than 
  18. > >>ábyte writes. I can directly access the picasso memory, as a linear 
  19. > >The question is, why not longword copies?
  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.         move.w  d0,(a1)+
  27.  
  28. Might, yes.. But I think that 3.5MB/s to ZII can be had with
  29. both move.l (a0)+,(a1)+ or move.l (a0)+,d0; 
  30. move.w d0,(a1)+; move.w d0,(a1)+.
  31.  
  32. --                               _
  33. a Stellar programmer          _ //
  34. "Amiga - back for the future" \X/
  35.