2019-09-17 12:22:00 +09:00

9 lines
94 B
Systemverilog

output a;
input b, c;
`ifdef behavioral
wire a = b & c;
`else
and a1 (a,b,c);
`endif