Skip to content

Commit

Permalink
Modifies mem_check.v. Fixes a logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
vinamarora8 committed Mar 28, 2017
1 parent b47fed8 commit 6919bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mem_check.v
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sync_SR_latch comp_latch(
.clk(clk),
.s(start_pulse),
.r(~(mema_data == memb_data)),
.p(running),
.p(~start_pulse),
.c(1'b1),
.q(q)
);
Expand Down

0 comments on commit 6919bb7

Please sign in to comment.