summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Repl.py
blob: 10892cf6f81343262c85af0e6231b271098b163f (plain)
1
2
3
4
5
6
7
8
9
10
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("associativity")
    num_pools = Param.Int("capacity in bytes")
    pool_res = Param.Int("block size in bytes")