Fixed syntax errors in some floating point modules. This came up in

Xilinx synthesis.
This commit is contained in:
Ross Thompson 2021-08-15 16:48:49 -05:00
parent 4eca94268c
commit 4c8ea89f15

View File

@ -3,7 +3,7 @@ module shifter_right(input logic signed [63:0] a,
output logic signed [63:0] y);
y = a >> shamt;
assign y = a >> shamt;
endmodule // shifter_right
@ -12,7 +12,7 @@ module shifter_left(input logic signed [63:0] a,
output logic signed [63:0] y);
y = a << shamt;
assign y = a << shamt;
endmodule // shifter_right