Exams/m2014 q6
From HDLBits
exams/m2014_q6cPrevious
Nextexams/2012_q2fsm
Consider the state machine shown below, which has one input w and one output z.
Implement the state machine. (This part wasn't on the midterm, but coding up FSMs is good practice).
Module Declaration
module top_module ( input clk, input reset, // synchronous reset input w, output z);
exams/m2014_q6cPrevious
Nextexams/2012_q2fsm