From: Nathan Binkert Date: Thu, 9 Jun 2005 19:09:35 +0000 (-0400) Subject: BaseSystem was renamed to System X-Git-Tag: m5_1.0_web~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ebb35e57cefbe83d0c99fa17dafdfe6945964bf6;p=gem5.git BaseSystem was renamed to System --HG-- extra : convert_revision : 74e03fe9447d9d2be59e675b034dc6df0afcde51 --- 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")