summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Repl.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/m5/objects/Repl.py')
-rw-r--r--src/python/m5/objects/Repl.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/python/m5/objects/Repl.py b/src/python/m5/objects/Repl.py
new file mode 100644
index 000000000..afd256082
--- /dev/null
+++ b/src/python/m5/objects/Repl.py
@@ -0,0 +1,10 @@
+from m5 import *
+class Repl(SimObject):
+ type = 'Repl'
+ abstract = True
+
+class GenRepl(Repl):
+ type = 'GenRepl'
+ fresh_res = Param.Int("associativity")
+ num_pools = Param.Int("capacity in bytes")
+ pool_res = Param.Int("block size in bytes")