diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2018-07-24 15:41:44 +0200 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2018-07-24 15:41:44 +0200 |
commit | a2ce5e75f234875566cf036d14256aca1adb77bb (patch) | |
tree | fd51d617ee5274ccb0c146d378515e2cc954c8f9 /src/rtl | |
parent | e255452d4591ad500b1392560f3a9b29e09b6960 (diff) |
Added explicit width specification for constant to silence truncation warning.support_HAL_KS_WRAPPED_KEYSIZE
Diffstat (limited to 'src/rtl')
-rw-r--r-- | src/rtl/keywrap_core.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtl/keywrap_core.v b/src/rtl/keywrap_core.v index 1e8ac5b..8d8f101 100644 --- a/src/rtl/keywrap_core.v +++ b/src/rtl/keywrap_core.v @@ -280,7 +280,7 @@ module keywrap_core ( if (block_ctr_set) begin - block_ctr_new = (rlen - 1); + block_ctr_new = (rlen - 1'h1); block_ctr_we = 1'h1; end @@ -458,7 +458,7 @@ module keywrap_core ( CTRL_NEXT_WCHECK: begin - if (block_ctr_reg < (rlen - 1)) + if (block_ctr_reg < (rlen - 1'h1)) begin block_ctr_inc = 1'h1; keywrap_core_ctrl_new = CTRL_NEXT_LOOP0; |