diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-06-04 14:19:05 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-06-04 14:19:05 -0400 |
commit | b46730c7ec2e3bd9f110002197c89269d83252f7 (patch) | |
tree | b0a8a7fccfb999be9c5c7f52b51c7a747658d80b /python/m5/objects/Tsunami.py | |
parent | 6b6445eeb92e9ef40e08348691c47aa3153c088d (diff) | |
download | gem5-b46730c7ec2e3bd9f110002197c89269d83252f7.tar.xz |
BaseSystem -> System
Make System an object that can be instantiated. For operating
systems that don't need any OS specific hacks.
python/m5/objects/AlphaConsole.py:
python/m5/objects/BaseCPU.py:
python/m5/objects/Tsunami.py:
BaseSystem -> System
--HG--
rename : python/m5/objects/BaseSystem.py => python/m5/objects/System.py
extra : convert_revision : e5d12db02abef1b0eda720b50dd2c09cb1ac5232
Diffstat (limited to 'python/m5/objects/Tsunami.py')
-rw-r--r-- | python/m5/objects/Tsunami.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/Tsunami.py b/python/m5/objects/Tsunami.py index fa3c18127..c8fd94e2c 100644 --- a/python/m5/objects/Tsunami.py +++ b/python/m5/objects/Tsunami.py @@ -5,7 +5,7 @@ from Platform import Platform class Tsunami(Platform): type = 'Tsunami' pciconfig = Param.PciConfigAll("PCI configuration") - system = Param.BaseSystem(Parent.any, "system") + system = Param.System(Parent.any, "system") class TsunamiCChip(FooPioDevice): type = 'TsunamiCChip' |