diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2007-03-03 19:02:31 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2007-03-03 19:02:31 -0500 |
commit | 1694c65ba169a555bd642d3352c65be41a36ce4d (patch) | |
tree | 5d05463b97f43ae6c2c9047303ab240e92c217c2 /configs | |
parent | 36f43ff6a5618154f6388650cc2a8526efdd7b30 (diff) | |
download | gem5-1694c65ba169a555bd642d3352c65be41a36ce4d.tar.xz |
Add Iob and remove the fake device
configs/common/FSConfig.py:
add an attachOnChipIO to force people to think about where "onchip" i/o should be connected in their hierarchy
--HG--
extra : convert_revision : cf79a9a00760b7daf28063f407a04bd38b956843
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/FSConfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 00ce105e0..da35698f2 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -96,6 +96,7 @@ def makeSparcSystem(mem_mode, mdesc = None): self.membus = Bus(bus_id=1) self.bridge = Bridge() self.t1000 = T1000() + self.t1000.attachOnChipIO(self.membus) self.t1000.attachIO(self.iobus) self.physmem = PhysicalMemory(range = AddrRange(Addr('1MB'), size = '64MB'), zero = True) self.physmem2 = PhysicalMemory(range = AddrRange(Addr('2GB'), size ='256MB'), zero = True) |