summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rtl/modexps6_wrapper.v6
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;