Currently, this model detects the overlapping sequence
"101" ----> REDESIGN the Moore FSM below to
detect the NEW sequence "011" , simulate using the
same test bench, and create a Moore Transition
Diagram for the new sequence 011.
module moore_seq
(
input clock, reset, x,
output reg z
);
//assign binary encoded codes to the states A through D
parameter
A = 2'b00,
B = 2'b01,
C = 2'b10,
D = 2'b11;
reg [1...