18 lines
194 B
Coq
Raw Normal View History

2023-01-11 11:13:09 +01:00
/**
* Or gate:
* out = 1 if (a == 1 or b == 1)
* 0 otherwise
*/
`default_nettype none
module Or(
input a,
input b,
output out
);
// Put your code here:
or(out,a,b);
endmodule