nand2/07_Operating_System/00_HACK/Or.v

18 lines
194 B
Coq
Raw Normal View History

2023-01-11 10:13:09 +00: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