aboutsummaryrefslogtreecommitdiff
path: root/aoc/n3.1.dot
diff options
context:
space:
mode:
authorJuan Marín Noguera <juan.marinn@um.es>2021-01-01 20:23:35 +0100
committerJuan Marín Noguera <juan.marinn@um.es>2021-01-01 20:23:56 +0100
commitb6b65cc5112a7b44cf483f9f963e61effb440802 (patch)
treeb4ba0d4f0e684fbb8abea2c8260960ea1bf8da98 /aoc/n3.1.dot
parenteb2e7dfff133c465c93e450ebc790695dadb9aeb (diff)
Cache coherency
Diffstat (limited to 'aoc/n3.1.dot')
-rw-r--r--aoc/n3.1.dot10
1 files changed, 10 insertions, 0 deletions
diff --git a/aoc/n3.1.dot b/aoc/n3.1.dot
new file mode 100644
index 0000000..fc0270f
--- /dev/null
+++ b/aoc/n3.1.dot
@@ -0,0 +1,10 @@
+digraph G {
+ I -> S[label="ReqRd / BusRd"]
+ I -> M[label="ReqWr / BusRdX"]
+ S -> M[label="ReqWr / BusUpd"]
+ S -> S[label="ReqRd /\nBusRd / Flush"]
+ S -> I[label="BusUpd, Reemplazo /\nBusRdX / Flush"]
+ M -> M[label="ReqRd, ReqWr /"]
+ M -> S[label="BusRd / FlushM"]
+ M -> I[label="BusRdX / Flush\nReemplazo / FlushM"]
+}