mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-09 23:52:03 +00:00
fix: Use correct size for output port
This commit is contained in:
parent
5ad9e4cacc
commit
823cfd70c3
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ module \$__MUL18X18 (input [17:0] A, input [17:0] B, output [35:0] Y);
|
|||
);
|
||||
endmodule
|
||||
|
||||
module \$__MUL36X36 (input [35:0] A, input [35:0] B, output [72:0] Y);
|
||||
module \$__MUL36X36 (input [35:0] A, input [35:0] B, output [71:0] Y);
|
||||
parameter A_WIDTH = 36;
|
||||
parameter B_WIDTH = 36;
|
||||
parameter Y_WIDTH = 72;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue