forked from Github_Repos/cvw
Fixed syntax errors in some floating point modules. This came up in
Xilinx synthesis.
This commit is contained in:
parent
6c57002d0e
commit
36761d9155
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user