1
0
mirror of synced 2026-02-21 07:05:05 +00:00
Files
YosysHQ.yosys/tests/arch/analogdevices/bug1480.ys
2026-02-19 10:59:59 +00:00

19 lines
210 B
Plaintext

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_analogdevices