verilog HDLBits刷题[Finite State Machines]“Fsm3onehot”---Simple one-hot state transitions 3

verilog HDLBits刷题[Finite State Machines]“Fsm3onehot”---Simple one-hot state transitions 3
1、题目The following is the state transition table for a Moore state machine with one input, one output, and four states. Use the following one-hot state encoding: A4b0001, B4b0010, C4b0100, D4b1000.Derive state transition and output logic equations by inspectionassuming a one-hot encoding. Implement only the state transition logic and output logic (the combinational logic portion) for this state machine. (The testbench will test with non-one hot inputs to make sure youre not trying to do something more complicated).StateNext stateOutputin0in1AAB0BCB0CAD0DCB1What does derive equations by inspection mean?One-hot state machine encoding guarantees that exactly one state bit is 1. This means that it is possible to determine whether the state machine is in a particular state by examining onlyonestate bit, notallstate bits. This leads to simple logic equations for the state transitions by examining the incoming edges for each state in the state transition diagram.For example, in the above state machine, how can the state machine can reach state A? It must use one of the two incoming edges: Currently in state A and in0 or Currently in state C and in 0. Due to the one-hot encoding, the logic equation to test for currently in state A is simply the state bit for state A. This leads to the final logic equation for the next state of state bit A:next_state[0] state[0](~in) | state[2](~in). The one-hot encoding guarantees that at most one clause (product term) will be active at a time, so the clauses can just be ORed together.When an exercise asks for state transition equations by inspection, use this particular method. The judge will test with non-one-hot inputs to ensure your logic equations follow this method, rather that doing something else (such as resetting the FSM) for illegal (non-one-hot) combinations of the state bits.Although knowing this algorithm isnt necessary for RTL-level design (the logic synthesizer handles this), it is illustrative of why one-hot FSMs often have simpler logic (at the expense of more state bit storage), and this topic frequently shows up on exams in digital logic courses.2、代码module top_module( input in, input [3:0] state, output [3:0] next_state, output out); // parameter A0, B1, C2, D3; // State transition logic: Derive an equation for each state flip-flop. assign next_state[A] state[0](~in) | state[2](~in); assign next_state[B] state[0](in) | state[1](in)|state[3](in); assign next_state[C] state[1](~in) | state[3](~in); assign next_state[D] state[2](in); // Output logic: assign out (state[D]1b1); endmodule