diff options
Diffstat (limited to 'python/m5/objects/Repl.py')
-rw-r--r-- | python/m5/objects/Repl.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/m5/objects/Repl.py b/python/m5/objects/Repl.py new file mode 100644 index 000000000..afd256082 --- /dev/null +++ b/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") |