1
0
mirror of synced 2026-02-17 05:16:54 +00:00
Files
YosysHQ.yosys/docs/resources/PRESENTATION_ExSyn/proc_03.v
2023-08-04 10:29:14 +12:00

11 lines
149 B
Verilog

module test(input A, B, C, D, E,
output reg Y);
always @* begin
Y <= A;
if (B)
Y <= C;
if (D)
Y <= E;
end
endmodule