diff options
author | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-01-18 17:29:55 +0100 |
---|---|---|
committer | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-01-18 17:29:55 +0100 |
commit | da8af915522bb8cf47f19f901a8210ff3e2b6118 (patch) | |
tree | da4efbcf700f40024122effa7897be8f3b8acbb8 /techlibs/common/stdcells.v | |
parent | 9a689f33a56d4b351bab021989f79e9b19500c62 (diff) | |
parent | bef17eeb109dd2dc4eaba6eb808a0172c0c53265 (diff) | |
download | yosys-da8af915522bb8cf47f19f901a8210ff3e2b6118.tar.gz yosys-da8af915522bb8cf47f19f901a8210ff3e2b6118.tar.bz2 yosys-da8af915522bb8cf47f19f901a8210ff3e2b6118.zip |
pmux2mux
Diffstat (limited to 'techlibs/common/stdcells.v')
-rw-r--r-- | techlibs/common/stdcells.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/common/stdcells.v b/techlibs/common/stdcells.v index 4e764078e..e33e651ca 100644 --- 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; |