blob: 8e7cd62cc59ee8c032746f8b748fdafaaf1f8f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
simobj AlphaTLB(SimObject):
type = 'AlphaTLB'
abstract = True
size = Param.Int("TLB size")
simobj AlphaDTB(AlphaTLB):
type = 'AlphaDTB'
size = 64
simobj AlphaITB(AlphaTLB):
type = 'AlphaITB'
size = 48
|