(no commit message)
authorlkcl <lkcl@web>
Sun, 10 Oct 2021 13:04:34 +0000 (14:04 +0100)
committerIkiWiki <ikiwiki.info>
Sun, 10 Oct 2021 13:04:34 +0000 (14:04 +0100)
docs/learning_nmigen.mdwn

index 1558f76d738137fa49ed327222578c6de5078532..82b8e9c2ee5547614f3748b5fa13e5b25d423f9f 100644 (file)
@@ -32,9 +32,9 @@ nMigen code for counter and testbench here: <https://nmigen.info/nmigen/latest/s
 
 Commands:
 
-    $python3 tb_up_counter.py
-    $gtkwave up_counter.vcd &
-    $python3 conv_to_verilog.py
+    $ python3 tb_up_counter.py
+    $ gtkwave up_counter.vcd &
+    $ python3 conv_to_verilog.py
 
 ## Block Digram with Yosys
 
@@ -42,17 +42,17 @@ Commands:
 
 Yosys commands:
 
-    $yosys
+    $ yosys
     yosys> read_verilog up_counter.v
     yosys> show
 
 Outside of Yosys, commands for diagram (SVG format for static images also supported):
 
-    $xdot ~/.yosys_show.dot
-    $dot ~/.yosys_show.dot -Tpng -o up_counter.png
+    $ xdot ~/.yosys_show.dot
+    $ dot ~/.yosys_show.dot -Tpng -o up_counter.png
 
 Here's a sight to behold:
 
 [[!img nmigen_verilog_tb.png size="600x"]]
 
-Now you can improve your understanding with the nMigen, verilog, and block diagram views side-by-side!
\ No newline at end of file
+Now you can improve your understanding with the nMigen, verilog, and block diagram views side-by-side!