MIPS/resources/pic/Cache.dot
2021-08-16 04:38:59 +08:00

11 lines
293 B
Plaintext

digraph ICache{
splines=ortho
compound=true
node [shape=Mrecord]
edge [arrowhead=normal]
IDLE->LOOKUP[xlabel="req" weight=5 color=green]
LOOKUP->REPLACE[xlabel="~hit" color=blue]
LOOKUP->IDLE[xlabel="hit" color=red]
REPLACE->IDLE[xlabel="refilled" color=orange]
}