From 3b6f569c3506e82193fd81cfb3e0049a8a61a222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Thu, 10 Mar 2016 08:14:07 +0100 Subject: Fixed minor nits in names of config bits. --- src/rtl/aes.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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; -- cgit v1.2.3