damc bd1fc19ee8 ppTests Rename test2.svh -> included.svh
- 19 pass, 9 fail due to whitespace.
- All failures are suspected bugs.
2022-07-21 13:51:51 +02:00

9 lines
94 B
Systemverilog

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