15 lines
188 B
Coq
Raw Normal View History

2023-01-11 11:13:09 +01:00
/**
* 8-way Or:
* out = (in[0] or in[1] or ... or in[7])
*/
`default_nettype none
module Or8Way(
input [7:0] in,
output out
);
// Put your code here:
assign out = |in;
endmodule