23 lines
455 B
Systemverilog
23 lines
455 B
Systemverilog
// DESCRIPTION: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
// SPDX-FileCopyrightText: 2024 Antmicro Ltd
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
process p; // force importing std into top-level namespace
|
|
|
|
class C;
|
|
function new;
|
|
if (randomize() != 1) $stop;
|
|
endfunction
|
|
endclass
|
|
|
|
module t;
|
|
initial begin
|
|
C c = new;
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|