QUESTION
Design A SOP circuit to detect the decimal number from 5 to 10 in a 4-bit GRAY Code input.

DESIGN
RTL
module g_d_detector (
d_in,
d_out
);
input [3:0] d_in;
output d_out;
//wire
wire n,m,o;
not (o,d_in[1]);
and (n,o,d_in[2]);
and (m,d_in[0],d_in[2]);
//output
or (d_out,m,n);
endmodule
TESTBENCH
Will update soon..
WAVEFORM
Will update soon..
SOP CIRCUIT