summaryrefslogtreecommitdiff
path: root/python/m5
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-06-09 15:09:35 -0400
committerNathan Binkert <binkertn@umich.edu>2005-06-09 15:09:35 -0400
commitebb35e57cefbe83d0c99fa17dafdfe6945964bf6 (patch)
treeefa5031e036185731035124163777796d440e605 /python/m5
parent4cc9fbf61d70668a8d80681998a1db2b2e1b4a41 (diff)
downloadgem5-ebb35e57cefbe83d0c99fa17dafdfe6945964bf6.tar.xz
BaseSystem was renamed to System
--HG-- extra : convert_revision : 74e03fe9447d9d2be59e675b034dc6df0afcde51
Diffstat (limited to 'python/m5')
-rw-r--r--python/m5/objects/System.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/System.py b/python/m5/objects/System.py
index c247983c5..6d1d6a68c 100644
--- a/python/m5/objects/System.py
+++ b/python/m5/objects/System.py
@@ -1,6 +1,6 @@
from m5 import *
class System(SimObject):
- type = 'BaseSystem'
+ type = 'System'
boot_cpu_frequency = Param.Frequency(Self.cpu[0].clock.frequency,
"boot processor frequency")
memctrl = Param.MemoryController(Parent.any, "memory controller")