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/demux.v
T
2022-03-01 00:36:52 +01:00

9 lines
155 B
Verilog

module demux(y, z, a, sel);
input a, sel;
output y, z;
wire notSel;
not(notSel, sel);
and(z, a, sel);
and(y, a, notSel);
endmodule