summaryrefslogtreecommitdiff
path: root/src/mem/cache/tags/Repl.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/tags/Repl.py')
-rw-r--r--src/mem/cache/tags/Repl.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mem/cache/tags/Repl.py b/src/mem/cache/tags/Repl.py
new file mode 100644
index 000000000..b76aa1d6e
--- /dev/null
+++ b/src/mem/cache/tags/Repl.py
@@ -0,0 +1,11 @@
+from m5.SimObject import SimObject
+from m5.params import *
+class Repl(SimObject):
+ type = 'Repl'
+ abstract = True
+
+class GenRepl(Repl):
+ type = 'GenRepl'
+ fresh_res = Param.Int("Fresh pool residency time")
+ num_pools = Param.Int("Number of priority pools")
+ pool_res = Param.Int("Pool residency time")