home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / next / programm / 5809 < prev    next >
Encoding:
Internet Message Format  |  1992-08-26  |  1.1 KB

  1. Xref: sparky comp.sys.next.programmer:5809 comp.dsp:2033
  2. Newsgroups: comp.sys.next.programmer,comp.dsp
  3. Path: sparky!uunet!haven.umd.edu!darwin.sura.net!wupost!usc!sol.ctr.columbia.edu!destroyer!ubc-cs!fs1.ee.ubc.ca!williamb
  4. From: williamb@ee.ubc.ca (william burchill)
  5. Subject: Re: Finding how much DSP56001 RAM is installed via program??
  6. Message-ID: <1992Aug26.181006.6623@ee.ubc.ca>
  7. Keywords: DSP, 56001, NeXT
  8. Organization: University of BC, Electrical Engineering
  9. References: <1992Aug26.060638.10407@ee.ubc.ca> <17fb61INN572@agate.berkeley.edu>
  10. Date: Wed, 26 Aug 1992 18:10:06 GMT
  11. Lines: 17
  12.  
  13.  
  14. I see a problem.  You are reading back immediately after writing out.  This 
  15. can allow bus capacitance to appear as a valid memory location.
  16. I suggest you write out a pair of different test patterns.  Since memory
  17. is organized into even lengths, when it comes time to read back for compares,
  18. your first read (at the start of memory) will be different from your last 
  19. write (at the end of memory).
  20. Do all writes first.
  21. Do all reads last.
  22. Use an even # of test patterns.
  23. #addr0    patt1
  24. #addr1    patt2
  25. #addr2    patt1
  26. #addr3    patt2
  27. #addr4    patt1
  28. etc.
  29.  
  30.