diff options
Diffstat (limited to 'src/mem/ruby/system/RubySystem.py')
-rw-r--r-- | src/mem/ruby/system/RubySystem.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/ruby/system/RubySystem.py b/src/mem/ruby/system/RubySystem.py index d66ada4b9..c9d2e96ac 100644 --- a/src/mem/ruby/system/RubySystem.py +++ b/src/mem/ruby/system/RubySystem.py @@ -28,14 +28,14 @@ # Brad Beckmann from m5.params import * -from m5.SimObject import SimObject +from ClockedObject import ClockedObject -class RubySystem(SimObject): +class RubySystem(ClockedObject): type = 'RubySystem' random_seed = Param.Int(1234, "random seed used by the simulation"); randomization = Param.Bool(False, "insert random delays on message enqueue times"); - clock = Param.Clock('1GHz', "") + clock = '1GHz' block_size_bytes = Param.Int(64, "default cache block size; must be a power of two"); mem_size = Param.MemorySize("total memory size of the system"); |