and resulting recursive import trickiness. --HG-- extra : convert_revision : 1ea93861eb8d260c9f3920dda0b8106db3e03705
12 lines
301 B
Python
12 lines
301 B
Python
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")
|