516a517,526
> * Adds a delay relative to the current tick to the current MSHR
> * @param delay_ticks the desired delay in ticks
> */
> void delay(Tick delay_ticks)
> {
> assert(readyTime <= curTick());
> readyTime = curTick() + delay_ticks;
> }
>
> /**