Design a circuit that implements a mod-3 counter, i.e., it outputs the sequence 0→ 1 → 2 → 0 → 1 → 2 → ⋯. Specification
module mod3_counter(count, clk, rst); input clk, rst; output [1:0] count;
Input
Output
The official statement of a problem is always the one in the PDF document. The HTML version of the statement is also given to help you, but may contain some content that is not well displayed. In case of doubt, always use the PDF.