[Cryptech-Commits] [core/cipher/aes] branch api_error_fix updated: Fixed minor nits in names of config bits.

git at cryptech.is git at cryptech.is
Thu Mar 10 07:14:13 UTC 2016


This is an automated email from the git hooks/post-receive script.

joachim at secworks.se pushed a commit to branch api_error_fix
in repository core/cipher/aes.

The following commit(s) were added to refs/heads/api_error_fix by this push:
       new  3b6f569   Fixed minor nits in names of config bits.
3b6f569 is described below

commit 3b6f569c3506e82193fd81cfb3e0049a8a61a222
Author: Joachim Strömbergson <joachim at secworks.se>
AuthorDate: Thu Mar 10 08:14:07 2016 +0100

    Fixed minor nits in names of config bits.
---
 src/rtl/aes.v | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/rtl/aes.v b/src/rtl/aes.v
index 033ed89..d79fe06 100644
--- a/src/rtl/aes.v
+++ b/src/rtl/aes.v
@@ -68,9 +68,9 @@ module aes(
   localparam STATUS_VALID_BIT = 1;
   localparam STATUS_ERROR_BIT = 2;
 
-  localparam ADDR_CONFIG      = 8'h0a;
-  localparam CTRL_ENCDEC_BIT  = 0;
-  localparam CTRL_KEYLEN_BIT  = 1;
+  localparam ADDR_CONFIG       = 8'h0a;
+  localparam CONFIG_ENCDEC_BIT = 0;
+  localparam CONFIG_KEYLEN_BIT = 1;
 
   localparam ADDR_KEY0        = 8'h10;
   localparam ADDR_KEY1        = 8'h11;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Commits mailing list