Sign in
foss-fpga-tools
/
third_party
/
yosys
/
15232a48af60fb7da3c3afdd144882ace2194197
/
.
/
tests
/
various
/
bug1480.ys
blob: 84faea08a464921b3be5502ceefa8e730627dc1d [
file
] [
log
] [
blame
]
read_verilog
<<
EOF
module
top
(...);
input
signed
[
17
:
0
]
A
;
input
signed
[
17
:
0
]
B
;
output X
;
output Y
;
wire
[
35
:
0
]
P
;
assign P
=
A
*
B
;
assign X
=
P
[
0
];
assign Y
=
P
[
35
];
endmodule
EOF
synth_xilinx