116c116
< g_system_ptr->getTime() - m_cycles_executed_at_start[i] + 1;
---
> g_system_ptr->curCycle() - m_cycles_executed_at_start[i] + 1;
122c122
< out << "ruby_cycles: " << g_system_ptr->getTime()-m_ruby_start << endl
---
> out << "ruby_cycles: " << g_system_ptr->curCycle()-m_ruby_start << endl
273c273
< Cycles ruby_cycles = g_system_ptr->getTime()-m_ruby_start;
---
> Cycles ruby_cycles = g_system_ptr->curCycle()-m_ruby_start;
296c296
< out << "Ruby_current_time: " << g_system_ptr->getTime() << endl;
---
> out << "Ruby_current_time: " << g_system_ptr->curCycle() << endl;
315c315
< g_system_ptr->getTime() - m_cycles_executed_at_start[i] + 1;
---
> g_system_ptr->curCycle() - m_cycles_executed_at_start[i] + 1;
500c500
< m_ruby_start = g_system_ptr->getTime();
---
> m_ruby_start = g_system_ptr->curCycle();
508c508
< m_cycles_executed_at_start[i] = g_system_ptr->getTime();
---
> m_cycles_executed_at_start[i] = g_system_ptr->curCycle();
566c566
< m_ruby_start = g_system_ptr->getTime();
---
> m_ruby_start = g_system_ptr->curCycle();
737c737
< DPRINTFN("%7s %3s RUBY WATCH %d\n", g_system_ptr->getTime(), id,
---
> DPRINTFN("%7s %3s RUBY WATCH %d\n", g_system_ptr->curCycle(), id,