Sign in
foss-fpga-tools
/
third_party
/
yosys
/
4c2d62821394896d5c4fdfccc496421822a3d1a2
/
.
/
manual
/
PRESENTATION_ExSyn
/
opt_01.v
blob: 5d3c1ea49fc04d0e2d2aed30b98dc08fcaac829c [
file
]
module
test
(
input A
,
B
,
output Y
);
assign Y
=
A
?
A
?
B
:
1
'b1 : B;
endmodule