aboutsummaryrefslogtreecommitdiff
path: root/core_selector/src/rtl/cipher_selector.v
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2015-11-12 16:47:34 -0500
committerPaul Selkirk <paul@psgd.org>2015-11-12 16:47:34 -0500
commitcf6cf22fcf3dac2991ad5f448eac548ac1e02eb1 (patch)
tree37a273c832d3e8157a683c27409cc6c3ad637048 /core_selector/src/rtl/cipher_selector.v
parentf05a3c65ec65004b097cb63d5ac6d463a7a9dc2f (diff)
Change reset to active-low.
Diffstat (limited to 'core_selector/src/rtl/cipher_selector.v')
-rw-r--r--core_selector/src/rtl/cipher_selector.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/core_selector/src/rtl/cipher_selector.v b/core_selector/src/rtl/cipher_selector.v
index 654ab4e..a8de37e 100644
--- a/core_selector/src/rtl/cipher_selector.v
+++ b/core_selector/src/rtl/cipher_selector.v
@@ -42,7 +42,7 @@
module cipher_selector
(
input wire sys_clk,
- input wire sys_rst,
+ input wire sys_rst_n,
input wire sys_ena,
input wire [13: 0] sys_eim_addr,
@@ -88,7 +88,7 @@ module cipher_selector
aes aes_inst
(
.clk(sys_clk),
- .reset_n(~sys_rst),
+ .reset_n(sys_rst_n),
.cs(enable_aes & (sys_eim_rd | sys_eim_wr)),
.we(sys_eim_wr),
@@ -112,7 +112,7 @@ module cipher_selector
chacha chacha_inst
(
.clk(sys_clk),
- .reset_n(~sys_rst),
+ .reset_n(sys_rst_n),
.cs(enable_chacha & (sys_eim_rd | sys_eim_wr)),
.we(sys_eim_wr),