blob: 1ed87d2e7f03f5bd60b913b6cb8e2d34556ca34b (
plain)
1
2
3
4
5
6
7
|
from m5 import *
from BaseHier import BaseHier
class Bus(BaseHier):
type = 'Bus'
clock_ratio = Param.Frequency("ratio of CPU to bus frequency")
width = Param.Int("bus width in bytes")
|