aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/keywrap_mem.v
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2018-06-28 14:35:04 +0200
committerJoachim StroĢˆmbergson <joachim@secworks.se>2018-06-28 14:35:04 +0200
commit311ab5f3d9b9c6777e8d4377c6774f2c47cb577f (patch)
treeed9c82e7ac5265c9b3ee37077d00e50893e494c2 /src/rtl/keywrap_mem.v
parentc585951b807256dc7269fddf694225d69a8fdb21 (diff)
A lot of cleanup of interconnections between cores and hierarchy. Fixed a number of nits and bugs. Added address generator for the API.
Diffstat (limited to 'src/rtl/keywrap_mem.v')
-rw-r--r--src/rtl/keywrap_mem.v5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rtl/keywrap_mem.v b/src/rtl/keywrap_mem.v
index e54798a..dc1d873 100644
--- a/src/rtl/keywrap_mem.v
+++ b/src/rtl/keywrap_mem.v
@@ -39,7 +39,6 @@
module keywrap_mem (
input wire clk,
- input wire reset_n,
input wire api_we,
input wire [13 : 0] api_addr,
@@ -130,10 +129,10 @@ module keywrap_mem (
always @*
begin : write_mux
mem0_data = 32'h0;
- mem0_addr = 8'h0;
+ mem0_addr = 13'h0;
mem0_we = 1'h0;
mem1_data = 32'h0;
- mem1_addr = 8'h0;
+ mem1_addr = 13'h0;
mem1_we = 1'h0;
if (core_we)