blob: c72751c895869d87b65c79964ffdc0f1beac5d8e [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
//
// AES ShiftRows
module aes_shift_rows (
input aes_pkg::mode_e mode_i,
input logic [7:0] data_i [16],
output logic [7:0] data_o [16]
);
import aes_pkg::*;
// dummy only
mode_e unused_mode;
assign unused_mode = mode_i;
assign data_o = data_i;
endmodule