blob: 7c5a0c5175c62a6ef981463a69749a421b776267 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from m5 import *
from Memory import Memory
class PhysicalMemory(Memory):
type = 'PhysicalMemory'
range = Param.AddrRange("Device Address")
file = Param.String('', "memory mapped file")
bus = Param.MemObject("Bus to attach to")
if build_env['FULL_SYSTEM']:
mmu = Param.MemoryController(Parent.any, "Memory Controller")
|