1
0
mirror of synced 2026-01-20 10:05:29 +00:00
Marcin Kościelnicki 15232a48af Fix #1462, #1480.
2019-11-19 08:57:39 +01:00

19 lines
203 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_xilinx