diff options
author | Joel Hestness <hestness@cs.wisc.edu> | 2012-09-05 20:51:41 -0500 |
---|---|---|
committer | Joel Hestness <hestness@cs.wisc.edu> | 2012-09-05 20:51:41 -0500 |
commit | 6924e10978c5847fa33cf33c50f5b3511bf89ee4 (patch) | |
tree | 8da38ae3e1bb57b6b97604ef143cc903b40a2814 /src/mem/ruby/system/MemoryControl.cc | |
parent | 494f6a858e47db3e5352468f504e82af01b931f9 (diff) | |
download | gem5-6924e10978c5847fa33cf33c50f5b3511bf89ee4.tar.xz |
Ruby Memory Controller: Fix clocking
Diffstat (limited to 'src/mem/ruby/system/MemoryControl.cc')
-rw-r--r-- | src/mem/ruby/system/MemoryControl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/system/MemoryControl.cc b/src/mem/ruby/system/MemoryControl.cc index c5f6ecb83..f1ebc07fa 100644 --- a/src/mem/ruby/system/MemoryControl.cc +++ b/src/mem/ruby/system/MemoryControl.cc @@ -42,7 +42,7 @@ #include "mem/ruby/system/System.hh" using namespace std; -MemoryControl::MemoryControl(const Params *p) : SimObject(p), m_event(this) +MemoryControl::MemoryControl(const Params *p) : ClockedObject(p), m_event(this) { g_system_ptr->registerMemController(this); } |