blob: 9cc7510a285fd05b14b1ca50e970fbf7554960d5 (
plain)
1
2
3
4
5
6
7
8
9
|
from m5.config import *
from MemObject import *
class PhysicalMemory(MemObject):
type = 'PhysicalMemory'
port = Port("the access port")
range = Param.AddrRange("Device Address")
file = Param.String('', "memory mapped file")
latency = Param.Latency(Parent.clock, "latency of an access")
|