X86: Make the amount of system memory match the hardcoded e820 info.
This commit is contained in:
parent
633c585bfa
commit
f6a97752b0
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ def makeLinuxX86System(mem_mode, mdesc = None):
|
|||
|
||||
# Physical memory
|
||||
self.membus = Bus(bus_id=1)
|
||||
self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
|
||||
self.physmem = PhysicalMemory(range = AddrRange('4GB')) #range = AddrRange(mdesc.mem()))
|
||||
self.physmem.port = self.membus.port
|
||||
|
||||
# North Bridge
|
||||
|
|
Loading…
Reference in a new issue