mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
fix module name to lc in aes_instructions
This commit is contained in:
parent
e6ffde61bd
commit
0d7ea36883
@ -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};
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user