6 lines
74 B
Coq
6 lines
74 B
Coq
![]() |
module top(input i0, input i1, output o);
|
||
|
|
||
|
assign o = i0 | i1;
|
||
|
|
||
|
endmodule
|