verilator/test_regress/t/t_array_unpacked_public.v
2020-01-10 18:49:23 -05:00

21 lines
377 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2020 by Stefan Wallentowitz
module t();
logic din [0:15];
array_test array_test_inst(.din(din));
initial begin
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
module array_test(
input din [0:15]
);
endmodule