From 136f26d704cb6b318b6cd3f79c19b9258b19813b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Fri, 8 Feb 2019 10:42:37 +0100 Subject: (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. --- src/rtl/chacha.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rtl/chacha.v') 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) -- cgit v1.2.3