Design a circuit that implements a mod-3 counter, i.e., it outputs the sequence \(0\rightarrow 1 \rightarrow 2 \rightarrow 0 \rightarrow 1 \rightarrow 2 \rightarrow \cdots \).
Specification
module mod3_counter(count, clk, rst); input clk, rst; output [1:0] count;
Input
Output