Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Fix space issues
Browse files Browse the repository at this point in the history
  • Loading branch information
caryr committed Mar 15, 2016
1 parent 4d22f3b commit 909e719
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ivltests/dffsynth10.v
Expand Up @@ -7,8 +7,8 @@ reg [3:0] Q;

always @(posedge CLK) begin
if (EN) begin
Q[1] <= D[1];
Q[2] <= ~D[2];
Q[1] <= D[1];
Q[2] <= ~D[2];
Q[3] <= D[3];
end
end
Expand Down
4 changes: 2 additions & 2 deletions ivltests/dffsynth11.v
Expand Up @@ -13,8 +13,8 @@ always @(posedge CLK or posedge RST) begin
Q[3] <= 1'b0;
end
else if (EN) begin
Q[1] <= D[1];
Q[2] <= ~D[2];
Q[1] <= D[1];
Q[2] <= ~D[2];
Q[3] <= D[3];
end
end
Expand Down
6 changes: 3 additions & 3 deletions ivltests/dffsynth9.v
Expand Up @@ -8,9 +8,9 @@ reg EN3;
reg [3:0] Q;

always @(posedge CLK) begin
if (EN1) Q[1] <= D[1];
if (EN2) Q[2] <= D[2];
if (EN3) Q[3] <= D[3];
if (EN1) Q[1] <= D[1];
if (EN2) Q[2] <= D[2];
if (EN3) Q[3] <= D[3];
end

reg failed;
Expand Down

0 comments on commit 909e719

Please sign in to comment.