diff options
author | Paul Selkirk <paul@psgd.org> | 2015-11-12 22:50:07 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-11-12 22:50:07 -0500 |
commit | e44dd819708da2b7252c2c90db20a7af601b440e (patch) | |
tree | 009875017224d1a9e9c6b41874cddbe8720ae9c9 /src | |
parent | 84f1d374f9967163932f7b08ac3ef97c54666fcb (diff) |
Change reset to active-low.
Diffstat (limited to 'src')
-rw-r--r-- | src/rtl/modexps6_wrapper.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rtl/modexps6_wrapper.v b/src/rtl/modexps6_wrapper.v index 3fad0f9..aa49261 100644 --- a/src/rtl/modexps6_wrapper.v +++ b/src/rtl/modexps6_wrapper.v @@ -1,6 +1,6 @@ module modexps6_wrapper
( - clk, rst, + clk, reset_n, cs, we,
address, write_data, read_data );
@@ -10,7 +10,7 @@ module modexps6_wrapper // Ports
// input wire clk; - input wire rst; + input wire reset_n; input wire cs; input wire we; @@ -117,7 +117,7 @@ module modexps6_wrapper // always @(posedge clk) // - if (rst) begin + if (!reset_n) begin // reg_control <= 2'b00; reg_mode <= 1'b0; |