2019-12-07 19:15:46 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
|
// without warranty, 2019 by Driss Hafdi.
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2019-12-07 19:15:46 +01:00
|
|
|
|
2025-09-13 15:28:43 +02:00
|
|
|
module t;
|
2019-12-07 19:15:46 +01:00
|
|
|
|
2022-11-20 04:43:10 +01:00
|
|
|
// bug1624
|
2025-08-30 00:33:14 +02:00
|
|
|
test #(.PARAM(32'd0)) test_i();
|
2019-12-07 19:15:46 +01:00
|
|
|
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module test
|
|
|
|
|
#(
|
2025-08-30 00:33:14 +02:00
|
|
|
parameter logic PARAM = 1'b0
|
2019-12-07 19:15:46 +01:00
|
|
|
) ();
|
|
|
|
|
endmodule
|