* nMigen code for counter and testbench here: <https://nmigen.info/nmigen/latest/start.html>
1. Create a file called "up_counter.py" containing the 16-bit up counter code from "Implementing a counter" section.
+
1. Create a file called "tb_up_counter.py" containing the testbench from "Testing a counter".
+
1. To the testbench file, add the import statement for the counter module (better get used to separating your sim/stimulus and module classes from the beginning):
from up_counter import UpCounter
1. Now you can improve your understanding with the nMigen, verilog, and block diagram views side-by-side!
-[[!img nmigen_verilog_tb.png ]]
\ No newline at end of file
+[[!img nmigen_verilog_tb.png size="600x"]]
\ No newline at end of file