Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-22
/
22.6--ifdef-behavioral.sv
blob: de0036da78007d0b586613e1b65dff4c45e4606b [
file
] [
log
] [
blame
]
/*
:name: 22.6--ifdef-behavioral
:description: Test
:should_fail: 0
:tags: 22.6
:type: preprocessing
*/
module
and_op
(
a
,
b
,
c
);
output a
;
input b
,
c
;
`ifdef behavioral
wire a = b & c;
`
else
and
a1
(
a
,
b
,
c
);
`endif
endmodule