Search
lxdream.org :: lxdream/src/watch.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/watch.c
changeset 736:a02d1475ccfd
prev561:533f6b478071
author nkeynes
date Wed Nov 05 10:05:08 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Fix (extremely boneheaded) failure to convert pc to physical address before
storing in the translation cache (in other words, the translation cache was
effectively disabled for MMU code). MMU code is now about 3 times faster...
file annotate diff log raw
1.1 --- a/src/watch.c Tue Jan 01 05:08:38 2008 +0000
1.2 +++ b/src/watch.c Wed Nov 05 10:05:08 2008 +0000
1.3 @@ -80,8 +80,8 @@
1.4 continue;
1.5 count++;
1.6 if( watch_arr[i].flags & op &&
1.7 - watch_arr[i].start < addr+size &&
1.8 - watch_arr[i].end >= addr ) {
1.9 + watch_arr[i].start < addr+size &&
1.10 + watch_arr[i].end >= addr ) {
1.11 return &watch_arr[i];
1.12 }
1.13 }
.