Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
doxygen で文書化された VHDL ファイルに graphviz (@dot) を追加できません。誰かがサンプルコードを提供できますか?
私のコードに fsm グラフィック表現を追加したいと思います。
前もって感謝します
ドットファイルを手動で書くだけです:
digraph FSM { RESET -> IDLE IDLE -> CALC [label="data_in = '1'"] CALC -> DONE DONE -> IDLE }