Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iceberg/gates/or8way.v
T
2022-03-04 01:38:03 +01:00

11 lines
256 B
Verilog

'include "or4way.v"
module or8way(out4, i0, i1, i2, i3, i4, i5, i6, i7);
input i0, i1, i2, i3, i4, i5, i6, i7;
output out;
wire tmp0, tmp1;
or4way(tmp0, i0, i1, i2, i3);
or4way(tmp1, i4, i5, i6, i7);
or(out, tmp0, tmp1);
endmodule