diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-09-05 22:04:34 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-09-05 22:04:34 -0700 |
commit | 545cbec5f711ba36899e97fbcdcd26aa9a611c99 (patch) | |
tree | 304daaa81a177b5489f16364249fd5f5a0018a4e /configs | |
parent | 6c7a490c2b779ea45adfc5708f50aa16718582e4 (diff) | |
download | gem5-545cbec5f711ba36899e97fbcdcd26aa9a611c99.tar.xz |
Enable proxies (Self/Parent) for specifying ports.
Significant revamp of Port code.
Some cleanup of SimObject code too, particularly to
make the SimObject and MetaSimObject implementations of
__setattr__ more consistent.
Unproxy code split out of print_ini().
src/python/m5/multidict.py:
Make get() return None by default, to match semantics
of built-in dictionary objects.
--HG--
extra : convert_revision : db73b6cdd004a82a08b2402afd1e16544cb902a4
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/FSConfig.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 193d3a5e5..67a1e5735 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -66,11 +66,7 @@ def makeLinuxAlphaSystem(mem_mode, mdesc = None): self.tsunami = BaseTsunami() self.tsunami.attachIO(self.iobus) self.tsunami.ide.pio = self.iobus.port - self.tsunami.ide.dma = self.iobus.port - self.tsunami.ide.config = self.iobus.port self.tsunami.ethernet.pio = self.iobus.port - self.tsunami.ethernet.dma = self.iobus.port - self.tsunami.ethernet.config = self.iobus.port self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(), read_only = True)) self.intrctrl = IntrControl() |