75a76,89
> /** The next cycle the CPU should be scheduled, given a cache
> * access or quiesce event returning on this cycle. This function
> * may return curTick if the CPU should run on the current cycle.
> */
> Tick nextCycle();
>
> /** The next cycle the CPU should be scheduled, given a cache
> * access or quiesce event returning on the given Tick. This
> * function may return curTick if the CPU should run on the
> * current cycle.
> * @param begin_tick The tick that the event is completing on.
> */
> Tick nextCycle(Tick begin_tick);
>