diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2011-02-08 15:52:44 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2011-02-08 15:52:44 -0800 |
commit | 6ebd7c390bd36129b092b115b5ddd0933634902f (patch) | |
tree | 1016554bd1864d296f9e2d6a54bb8e6c182dc6a5 /configs/common | |
parent | 488280e48b5f227b2eb35df5d6daba2ae94a1de6 (diff) | |
download | gem5-6ebd7c390bd36129b092b115b5ddd0933634902f.tar.xz |
config: fixed minor bug connecting dma devices to ruby
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/FSConfig.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 44ac104b5..9e5fd3a0b 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -334,6 +334,9 @@ def makeX86System(mem_mode, numCPUs = 1, mdesc = None, self = None, Ruby = False # Create and connect the busses required by each memory system if Ruby: connectX86RubySystem(self) + # add the ide to the list of dma devices that later need to attach to + # dma controllers + self._dma_devices = [self.pc.south_bridge.ide] else: connectX86ClassicSystem(self) |