blob: 8e9f1094fb74900e44d546cd1a73d8d8e753e16e (
plain)
1
2
3
4
5
6
7
8
9
10
|
from m5.config 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")
|