61,62d60
< //for now. @todo fix later
< #define NUM_MEM_CMDS 1 << 11
95d92
<
126a124,129
> /** The time at which the packet will be fully transmitted */
> Tick finishTime;
>
> /** The time at which the first chunk of the packet will be transmitted */
> Tick firstWordTime;
>
178,179c181
< IsUpgrade = 1 << 9,
< HasData = 1 << 10
---
> HasData = 1 << 9
181a184,187
> //For statistics we need max number of commands, hard code it at
> //20 for now. @todo fix later
> #define NUM_MEM_CMDS 1 << 10
>
201c207
< UpgradeReq = IsInvalidate | IsRequest | IsUpgrade,
---
> UpgradeReq = IsInvalidate | IsRequest,
328,331d333
< if (isRead())
< icmd |= HasData;
< if (isWrite())
< icmd &= ~HasData;