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 6c57002d0e
commit 36761d9155

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