fix module name to lc in aes_instructions

This commit is contained in:
James E. Stine 2024-03-05 08:56:24 -06:00
parent e6ffde61bd
commit 0d7ea36883
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ module aes64ks1i(input logic [3:0] roundnum,
logic [31:0] Sbox_Out;
// Get rcon value from table
rcon_Lut_128 rc(.RD(roundnum), .rcon_out(rcon_preshift));
rcon_lut_128 rc(.RD(roundnum), .rcon_out(rcon_preshift));
// Shift RCON value
assign rcon = {24'b0, rcon_preshift};

View File

@ -25,7 +25,7 @@
// and limitations under the License.
////////////////////////////////////////////////////////////////////////////////////////////////
module rcon_Lut_128(input logic [3:0] RD,
module rcon_lut_128(input logic [3:0] RD,
output logic [7:0] rcon_out);
always_comb