2025-11-05 11:48:22 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2024 Wilson Snyder
|
2025-11-05 11:48:22 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
module t (
|
|
|
|
|
input logic [7:0] i1 [8],
|
|
|
|
|
input logic [7:0] i2 [16],
|
|
|
|
|
input logic [7:0] i3 [512],
|
|
|
|
|
output logic [7:0] o1 [8],
|
|
|
|
|
output logic [7:0] o2 [16],
|
|
|
|
|
output logic [7:0] o3 [256]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
endmodule
|