and resulting recursive import trickiness. --HG-- extra : convert_revision : 1ea93861eb8d260c9f3920dda0b8106db3e03705
15 lines
287 B
Python
15 lines
287 B
Python
from m5.SimObject import SimObject
|
|
from m5.params import *
|
|
class AlphaTLB(SimObject):
|
|
type = 'AlphaTLB'
|
|
abstract = True
|
|
size = Param.Int("TLB size")
|
|
|
|
class AlphaDTB(AlphaTLB):
|
|
type = 'AlphaDTB'
|
|
size = 64
|
|
|
|
class AlphaITB(AlphaTLB):
|
|
type = 'AlphaITB'
|
|
size = 48
|