140,159d139
< FullO3CPU<Impl>::TickEvent::TickEvent(FullO3CPU<Impl> *c)
< : Event(CPU_Tick_Pri), cpu(c)
< {
< }
<
< template <class Impl>
< void
< FullO3CPU<Impl>::TickEvent::process()
< {
< cpu->tick();
< }
<
< template <class Impl>
< const char *
< FullO3CPU<Impl>::TickEvent::description() const
< {
< return "FullO3CPU tick";
< }
<
< template <class Impl>
164c144,145
< tickEvent(this),
---
> tickEvent([this]{ tick(); }, "FullO3CPU tick",
> false, Event::CPU_Tick_Pri),