Oops, the timer was wrong in the I2C code. It still isn't working

though.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1472 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2008-04-14 01:39:59 +00:00
parent b5a52b566c
commit e6bb277f82
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: MT24LC256.cxx,v 1.2 2008-04-13 23:43:14 stephena Exp $ // $Id: MT24LC256.cxx,v 1.3 2008-04-14 01:39:59 stephena Exp $
//============================================================================ //============================================================================
#include <cassert> #include <cassert>
@ -323,7 +323,7 @@ bool MT24LC256::jpee_timercheck(int mode)
{ {
uInt32 elapsed = mySystem.cycles() - myCyclesWhenTimerSet; uInt32 elapsed = mySystem.cycles() - myCyclesWhenTimerSet;
cerr << " --> elapsed: " << elapsed << endl; cerr << " --> elapsed: " << elapsed << endl;
return elapsed < (uInt32)(5000.0 / 838.0); return elapsed < (uInt32)(5000000.0 / 838.0);
} }
} }