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

  1. Path: vixen.cso.uiuc.edu!msaladin
  2. From: msaladin@students.uiuc.edu (Saladino Michael D)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: One hardware-basher's manifesto
  5. Date: 29 Feb 1996 23:13:06 GMT
  6. Organization: University of Illinois at Urbana
  7. Message-ID: <4h5bu2$fur@vixen.cso.uiuc.edu>
  8. References: <4ge8na$vhe@ar.ar.com.au> <08000305729070351637@BIRDLAND> <4guenp$1a1@vixen.cso.uiuc.edu> <4h51kg$cio@maureen.teleport.com>
  9. NNTP-Posting-Host: ux5.cso.uiuc.edu
  10.  
  11. sschaem@teleport.com (Stephan Schaem) writes:
  12.  
  13. > You do not ALWAYS access ram linearly... Drawing a vertical line in 32bit
  14. > color only accessing ram linearly?
  15.  
  16. >..    move.l    d0,(a0)
  17. >    adda.l    a1,a0
  18. >    dbra    d0,..
  19.  
  20. > Since you are the expert here tell me what happen on a 030/040/060 with 
  21. > this and burst on? is it really 10 time faster with the burst on?
  22.  
  23. You're right, you don't always and I shouldn't have been so general.
  24. But, guess what?  You do most of the time.  What happens to all those
  25. variable references that would have been helped?  What happens to all
  26. those horizontal lines, or do you just draw vertical ones?  What happens
  27. to the other FORTY tasks running in the background?  Or maybe you
  28. go around switching your burst mode on and off (a very time consuming
  29. change).  You are trying to use one example of code that would run
  30. faster to create a rule.  It's not true.  You must take into account
  31. ALL of your code AND everyone elses that's also running on your system.
  32. Then, and only then, does turning burst mode off look stupid.  Unless
  33. you are writing a program that takes over the machine and draws a demo
  34. animation in vertical strokes.  And, boy do we need another one of those.
  35.