summaryrefslogtreecommitdiff
path: root/objects/BaseCache.mpy
diff options
context:
space:
mode:
Diffstat (limited to 'objects/BaseCache.mpy')
-rw-r--r--objects/BaseCache.mpy9
1 files changed, 7 insertions, 2 deletions
diff --git a/objects/BaseCache.mpy b/objects/BaseCache.mpy
index 314a4efda..cb3e56de6 100644
--- a/objects/BaseCache.mpy
+++ b/objects/BaseCache.mpy
@@ -36,7 +36,12 @@ simobj BaseCache(BaseMem):
two_queue = Param.Bool(False,
"whether the lifo should have two queue replacement")
write_buffers = Param.Int(8, "number of write buffers")
- use_prefetcher = Param.Bool(False,
- "wheter you are using the hardware prefetcher")
+ prefetch_miss = Param.Bool(False,
+ "wheter you are using the hardware prefetcher from Miss stream")
+ prefetch_access = Param.Bool(False,
+ "wheter you are using the hardware prefetcher from Access stream")
prefetcher_size = Param.Int(100,
"Number of entries in the harware prefetch queue")
+ prefetch_past_page = Param.Bool(False,
+ "Allow prefetches to cross virtual page boundaries")
+