blob: b69c969cb94c666243217359866a89a3da50dbf3 (
plain)
1
2
3
4
5
6
7
|
from m5 import *
from Memory import Memory
class PhysicalMemory(Memory):
type = 'PhysicalMemory'
range = Param.AddrRange("Device Address")
file = Param.String('', "memory mapped file")
|