diff options
author | Joachim StroĢmbergson <joachim@assured.se> | 2019-02-08 10:42:37 +0100 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@assured.se> | 2019-02-08 10:42:37 +0100 |
commit | 136f26d704cb6b318b6cd3f79c19b9258b19813b (patch) | |
tree | daeaf67995ec819401bef227df55bfa02b645a04 /src/rtl/chacha.v | |
parent | de3f38a835ad9ac5ad8b6153a6b363c23641a3f8 (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.v | 4 |
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) |