forked from github/verilator
17 lines
442 B
Systemverilog
17 lines
442 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2019 by Todd Strader.
|
|
|
|
module secret_impl (
|
|
input unpacked_in [7:0],
|
|
output unpacked_out [7:0]);
|
|
|
|
genvar i;
|
|
generate
|
|
for (i = 0; i < 8; i = i + 1) begin
|
|
assign unpacked_out[i] = unpacked_in[i];
|
|
end
|
|
endgenerate
|
|
|
|
endmodule
|