aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/chacha.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.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.v')
-rw-r--r--src/rtl/chacha.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtl/chacha.v b/src/rtl/chacha.v
index 435555b..ec67d24 100644
--- a/src/rtl/chacha.v
+++ b/src/rtl/chacha.v
@@ -233,8 +233,8 @@ module chacha(
begin
if (address == ADDR_CTRL)
begin
- init_new <= write_data[CTRL_INIT_BIT];
- next_new <= write_data[CTRL_NEXT_BIT];
+ init_new = write_data[CTRL_INIT_BIT];
+ next_new = write_data[CTRL_NEXT_BIT];
end
if (address == ADDR_KEYLEN)