32 lines
558 B
Systemverilog
32 lines
558 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
// any use, without warranty, 2025 by Antmicro.
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
class A;
|
|
rand int j;
|
|
endclass
|
|
|
|
class B;
|
|
A a;
|
|
rand int i;
|
|
function new();
|
|
a = new;
|
|
i = 7;
|
|
endfunction
|
|
task r();
|
|
if (a.randomize() with { j == i; } == 0) $stop;
|
|
endtask
|
|
endclass
|
|
|
|
module t;
|
|
initial begin
|
|
B b = new;
|
|
b.r();
|
|
if (b.a.j != 7) $stop;
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|