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