38c38
< # Note: the L1 Cache latency is only used by the sequencer on fast path hits
---
> # Declare caches used by the protocol
40,41c40,41
< class L1Cache(RubyCache):
< latency = 3
---
> class L1Cache(RubyCache): pass
> class L2Cache(RubyCache): pass
43,48d42
< #
< # Note: the L2 Cache latency is not currently used
< #
< class L2Cache(RubyCache):
< latency = 15
<