URL
https://opencores.org/ocsvn/aes_decrypt_fpga/aes_decrypt_fpga/trunk
Subversion Repositories aes_decrypt_fpga
[/] [aes_decrypt_fpga/] [trunk/] [rtl/] [verilog/] [InvAddRoundKey.sv] - Rev 2
Compare with Previous | Blame | View Log
`timescale 1ns/1psmodule InvAddRoundKey(input [0:127] din0,input [0:127] din1,input [0:127] rkey,input S,output [0:127] dout);logic [0:127] tmp;always_combtmp <= S? din1 : din0;assign dout = tmp ^ rkey;endmodule
