summaryrefslogtreecommitdiff
path: root/src/mem/ruby/system/System.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby/system/System.hh')
-rw-r--r--src/mem/ruby/system/System.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mem/ruby/system/System.hh b/src/mem/ruby/system/System.hh
index a59ade398..0030b5033 100644
--- a/src/mem/ruby/system/System.hh
+++ b/src/mem/ruby/system/System.hh
@@ -78,6 +78,7 @@ class RubySystem : public ClockedObject
static bool getCooldownEnabled() { return m_cooldown_enabled; }
SimpleMemory *getPhysMem() { return m_phys_mem; }
+ Cycles getStartCycle() { return m_start_cycle; }
const bool getAccessBackingStore() { return m_access_backing_store; }
// Public Methods
@@ -135,6 +136,7 @@ class RubySystem : public ClockedObject
Network* m_network;
std::vector<AbstractController *> m_abs_cntrl_vec;
+ Cycles m_start_cycle;
public:
Profiler* m_profiler;