aboutsummaryrefslogtreecommitdiff
path: root/aoc/n3.4.dot
diff options
context:
space:
mode:
Diffstat (limited to 'aoc/n3.4.dot')
-rw-r--r--aoc/n3.4.dot16
1 files changed, 16 insertions, 0 deletions
diff --git a/aoc/n3.4.dot b/aoc/n3.4.dot
new file mode 100644
index 0000000..86b361d
--- /dev/null
+++ b/aoc/n3.4.dot
@@ -0,0 +1,16 @@
+digraph G {
+ S, I, M, E
+ M -> M [label="ReqRd /\nReqWr /"]
+ M -> S [label="BusRd / FlushM"]
+ M -> I [label="Reemplazo / FlushM\nBusRdX / Flush\nBusUpd / Flush"]
+ E -> M [label="ReqWr /"]
+ E -> E [label="ReqRd /"]
+ E -> S [label="BusRd /"]
+ E -> I [label="Reemplazo /\nBusRdX /\nBusUpd /"]
+ S -> M [label="ReqWr / BusUpd"]
+ S -> S [label="ReqRd /\nBusRd /"]
+ S -> I [label="Reemplazo /\nBusRdX /\nBusUpd /"]
+ I -> M [label="ReqWr / BusRdX"]
+ I -> E [label="ReqRd, E / BusRd"]
+ I -> S [label="ReqRd, !E / BusRd"]
+}