chip design made easy

Popular Pages

online Verilog Code for 8bit comparator

Verilog code sample for 8bit comparator.

module comparator(A, B, Comp);
input [7:0] A;
input [7:0] B;
output Comp;

assign Comp = A >= B ? 1'b1 : 1'b0;
endmodule


People found these links also interested and knowledgeable

Register Transfer Language Discussions

Popular columns


Pool of Chip Articles are available.....