diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-22 23:09:27 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-22 23:09:27 -0500 |
commit | f85082e0a00ff7ba9caf79a58f41c6c4e351cd9d (patch) | |
tree | b6070e39d2895d4db80413344492f07904359982 /configs/common/FSConfig.py | |
parent | 0a99750ebfe9a9b400ee5f0610ed429851345c4b (diff) | |
download | gem5-f85082e0a00ff7ba9caf79a58f41c6c4e351cd9d.tar.xz |
Added a parameter to set memory to zero. This is to support Legion, and once we can make our own hypervisor binary, we probably won't need it.
--HG--
extra : convert_revision : 168883e4a5d3760962cd9759a6f41c66f5a6402a
Diffstat (limited to 'configs/common/FSConfig.py')
-rw-r--r-- | configs/common/FSConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 45077a838..1c0a56362 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -89,7 +89,7 @@ def makeSparcSystem(mem_mode, mdesc = None): self.bridge = Bridge() self.t1000 = T1000() self.t1000.attachIO(self.iobus) - self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem())) + self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()), zero = True) self.bridge.side_a = self.iobus.port self.bridge.side_b = self.membus.port self.physmem.port = self.membus.port |