Skip to content

Commit

Permalink
Fix mermaid graph.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekcyjna committed Oct 7, 2023
1 parent e2f9426 commit 5c65f6a
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions transactron/lib/reqres.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,20 @@ class ArgumentsToResultsZipper(Elaboratable):
Example topology:
```{mermaid}
graph LR
Caller;
Caller -- write_arguments --> 2-FIFO;
Caller -- invoke --> Callee["Callee \n (1+ cycle delay)"];
Callee -- write_results --> Forwarder;
Forwarder -- read --> Zip;
2-FIFO -- read --> Zip;
Zip -- read --> User;
subgraph ArgumentsToResultsZipper
Forwarder;
2-FIFO;
Zip;
end
```
.. mermaid::
graph LR
Caller -- write_arguments --> 2-FIFO;
Caller -- invoke --> Callee["Callee \\n (1+ cycle delay)"];
Callee -- write_results --> Forwarder;
Forwarder -- read --> Zip;
2-FIFO -- read --> Zip;
Zip -- read --> User;
subgraph ArgumentsToResultsZipper
Forwarder;
2-FIFO;
Zip;
end
Attributes
----------
Expand Down

0 comments on commit 5c65f6a

Please sign in to comment.