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