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