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