diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2015-05-16 12:15:01 +0200 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2015-05-16 12:15:01 +0200 |
commit | d35e060d1d66691e63f2d20c2500723b4bae8566 (patch) | |
tree | c5cd342dfc37f76312156caed6616e3d93ed17ee /src/rtl | |
parent | 241a101d64f2f66ba53a8996d3499b23d5815f1b (diff) |
(1) Changed name and version to reflect that it is not only AES-128 and that the core is fairly close to done. (2) Moved counter update.
Diffstat (limited to 'src/rtl')
-rw-r--r-- | src/rtl/aes.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rtl/aes.v b/src/rtl/aes.v index 5d6030b..f9fb318 100644 --- a/src/rtl/aes.v +++ b/src/rtl/aes.v @@ -90,9 +90,9 @@ module aes( localparam ADDR_RESULT2 = 8'h32; localparam ADDR_RESULT3 = 8'h33; - localparam CORE_NAME0 = 32'h6165732d; // "aes-" - localparam CORE_NAME1 = 32'h31323820; // "128 " - localparam CORE_VERSION = 32'h302e3580; // "0.80" + localparam CORE_NAME0 = 32'h61657320; // "aes " + localparam CORE_NAME1 = 32'h20202020; // " " + localparam CORE_VERSION = 32'h302e3820; // "0.80" //---------------------------------------------------------------- |