projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b96675
)
Removed cases of trailing comma in stdcells.v
author
Clifford Wolf
<clifford@clifford.at>
Sat, 18 Jan 2014 14:36:17 +0000
(15:36 +0100)
committer
Clifford Wolf
<clifford@clifford.at>
Sat, 18 Jan 2014 14:36:17 +0000
(15:36 +0100)
techlibs/common/stdcells.v
patch
|
blob
|
history
diff --git
a/techlibs/common/stdcells.v
b/techlibs/common/stdcells.v
index 4e764078e39aa66d61c26c4cb208c3697df0cc54..e33e651ca52605a38db1a095d46f5f9c083fec05 100644
(file)
--- a/
techlibs/common/stdcells.v
+++ b/
techlibs/common/stdcells.v
@@
-456,7
+456,7
@@
wire [WIDTH-1:0] A_buf, B_buf, Y_buf;
.Cin(1'b1),
.Y(Y_buf),
.Cout(carry),
- .Csign(carry_sign)
,
+ .Csign(carry_sign)
);
// ALU flags
@@
-505,7
+505,7
@@
wire [WIDTH-1:0] A_buf, B_buf, Y_buf;
.Cin(1'b1),
.Y(Y_buf),
.Cout(carry),
- .Csign(carry_sign)
,
+ .Csign(carry_sign)
);
// ALU flags
@@
-849,7
+849,7
@@
assign B_buf_u = B_SIGNED && B_buf[WIDTH-1] ? -B_buf : B_buf;
.A(A_buf_u),
.B(B_buf_u),
.Y(Y_u),
- .R(R_u)
,
+ .R(R_u)
);
assign Y = A_SIGNED && B_SIGNED && (A_buf[WIDTH-1] != B_buf[WIDTH-1]) ? -Y_u : Y_u;