Merge from head.
[gem5.git] / src / mem / cache / tags / Repl.py
1 from m5.SimObject import SimObject
2 from m5.params import *
3 class Repl(SimObject):
4 type = 'Repl'
5 abstract = True
6
7 class GenRepl(Repl):
8 type = 'GenRepl'
9 fresh_res = Param.Int("Fresh pool residency time")
10 num_pools = Param.Int("Number of priority pools")
11 pool_res = Param.Int("Pool residency time")