aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/chacha_core.v
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@assured.se>2019-02-08 10:42:37 +0100
committerJoachim StroĢˆmbergson <joachim@assured.se>2019-02-08 10:42:37 +0100
commit136f26d704cb6b318b6cd3f79c19b9258b19813b (patch)
treedaeaf67995ec819401bef227df55bfa02b645a04 /src/rtl/chacha_core.v
parentde3f38a835ad9ac5ad8b6153a6b363c23641a3f8 (diff)
(1) Removed reset input port from qr module, qr module instances and qr module tb. (2) Fixed non blocking assigment erroneously used in comboinational process.HEADmaster
Diffstat (limited to 'src/rtl/chacha_core.v')
-rw-r--r--src/rtl/chacha_core.v4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/rtl/chacha_core.v b/src/rtl/chacha_core.v
index 20aecec..47234bf 100644
--- a/src/rtl/chacha_core.v
+++ b/src/rtl/chacha_core.v
@@ -195,7 +195,6 @@ module chacha_core(
//----------------------------------------------------------------
chacha_qr qr0(
.clk(clk),
- .reset_n(reset_n),
.a(qr0_a),
.b(qr0_b),
@@ -210,7 +209,6 @@ module chacha_core(
chacha_qr qr1(
.clk(clk),
- .reset_n(reset_n),
.a(qr1_a),
.b(qr1_b),
@@ -225,7 +223,6 @@ module chacha_core(
chacha_qr qr2(
.clk(clk),
- .reset_n(reset_n),
.a(qr2_a),
.b(qr2_b),
@@ -240,7 +237,6 @@ module chacha_core(
chacha_qr qr3(
.clk(clk),
- .reset_n(reset_n),
.a(qr3_a),
.b(qr3_b),