Skip to content

Commit

Permalink
Take review comments into account
Browse files Browse the repository at this point in the history
  • Loading branch information
cchr-ledger committed Sep 9, 2024
1 parent 7ad9d2b commit b71173f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion fpga-arch/bsv/SWD.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import SWDInner::*;

import GetPut::*;
import Vector::*;
import StmtFSM::*;
import ClientServer::*;

(* always_enabled *)
Expand Down
3 changes: 1 addition & 2 deletions fpga-arch/bsv/SWDInner.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ package SWDInner;

import Prescaler::*;

import StmtFSM::*;
import GetPut::*;
import Vector::*;
import ClientServer::*;
Expand Down Expand Up @@ -222,7 +221,7 @@ module mkSWDController (SWDController#(clk_divider))
end
end

else if (prescaler.pre_rising && (cnt == 0)) begin
if (prescaler.pre_rising && (cnt == 0)) begin
state <= IDLE;
end
endrule
Expand Down

0 comments on commit b71173f

Please sign in to comment.