6 lines
112 B
Coq
6 lines
112 B
Coq
|
|
module ge2(output wire out, input wire [1:0] A, input wire [1:0] B);
|
||
|
|
|
||
|
|
assign out = A >= B;
|
||
|
|
|
||
|
|
endmodule // ge2
|