3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 19:35:53 +00:00

Signedness

This commit is contained in:
Eddie Hung 2019-07-16 15:54:27 -07:00
parent 3f677fb0db
commit c501aa5ee8
2 changed files with 8 additions and 8 deletions

View file

@ -20,7 +20,7 @@ module \$__MUL25X18 (input [24:0] A, input [17:0] B, output [42:0] Y);
.PREG(0)
) _TECHMAP_REPLACE_ (
//Data path
.A({5'b0, A}),
.A({{5{A[24]}}, A}),
.B(B),
.C(48'b0),
.D(24'b0),