mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Fixed syntax errors in some floating point modules. This came up in
Xilinx synthesis.
This commit is contained in:
parent
4eca94268c
commit
4c8ea89f15
@ -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