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
This commit is contained in:
Nathan Binkert
2005-06-04 14:19:05 -04:00
parent 6b6445eeb9
commit b46730c7ec
5 changed files with 70 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ class BaseCPU(SimObject):
dtb = Param.AlphaDTB("Data TLB")
itb = Param.AlphaITB("Instruction TLB")
mem = Param.FunctionalMemory("memory")
system = Param.BaseSystem(Parent.any, "system object")
system = Param.System(Parent.any, "system object")
else:
workload = VectorParam.Process("processes to run")