Skip to content

Commit

Permalink
Changed to synch reset.
Browse files Browse the repository at this point in the history
  • Loading branch information
secworks committed May 27, 2016
1 parent bd54850 commit 162ccb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rtl/siphash.v
Expand Up @@ -192,7 +192,7 @@ module siphash(
// All registers are positive edge triggered with
// asynchronous active low reset.
//----------------------------------------------------------------
always @ (posedge clk or negedge reset_n)
always @ (posedge clk)
begin
if (!reset_n)
begin
Expand Down
2 changes: 1 addition & 1 deletion src/rtl/siphash_core.v
Expand Up @@ -150,7 +150,7 @@ module siphash_core(
// All registers are positive edge triggered with
// asynchronous active low reset.
//----------------------------------------------------------------
always @ (posedge clk or negedge reset_n)
always @ (posedge clk)
begin
if (!reset_n)
begin
Expand Down

0 comments on commit 162ccb9

Please sign in to comment.