From d04ce7324b86fe878f55096d5e2631272630f055 Mon Sep 17 00:00:00 2001 From: Ahmed Sobhy Date: Sat, 27 Apr 2024 12:46:36 +0300 Subject: [PATCH] :memo: Update AES.v --- AES.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AES.v b/AES.v index bb6e4f3..61d0357 100644 --- a/AES.v +++ b/AES.v @@ -22,7 +22,7 @@ module AES #(parameter Nk = 4, parameter Nr = 10) (encryptedOutputReg, decrypted wire [127:0] tempDecryptedOutput; // Binary to BCD Logic - reg [7:0] bcdInput = 8'b_00000000; + reg [7:0] bcdInput = 8'b00000000; wire [11:0] bcdOutput; Binary2BCD b2b(bcdInput, bcdOutput);