1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
// 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
interface Iface;
bit clk;
int x[2:0];
clocking cb @(posedge clk);
default input #0 output #0;
inout x;
endclocking
endinterface
class Foo;
virtual Iface iface;
int index = 0;
function new(virtual Iface tmp);
iface = tmp;
endfunction
task update(virtual Iface tmp);
iface = tmp;
endtask
task update_index(int i);
index = i;
endtask
endclass
class Bar;
Foo foo;
function new(Foo tmp);
foo = tmp;
endfunction
task update(Foo tmp);
foo = tmp;
endtask
task assignment();
foo.iface.cb.x[foo.index] <= 8;
endtask
endclass
module t;
Iface iface();
Iface iface2();
task clockSome();
#2;
iface.clk = ~iface.clk;
iface2.clk = ~iface2.clk;
#2;
iface.clk = ~iface.clk;
iface2.clk = ~iface2.clk;
endtask
initial begin
Foo foo = new(iface);
Foo foo2 = new(iface2);
Bar bar = new(foo);
clockSome();
if (iface.x[0] != 0) $stop;
if (iface.x[1] != 0) $stop;
if (iface2.x[0] != 0) $stop;
if (iface2.x[1] != 0) $stop;
bar.assignment();
clockSome();
if (iface.x[0] != 8) $stop;
if (iface.x[1] != 0) $stop;
if (iface2.x[0] != 0) $stop;
if (iface2.x[1] != 0) $stop;
foo.update_index(1);
clockSome();
if (iface.x[0] != 8) $stop;
if (iface.x[1] != 0) $stop;
if (iface2.x[0] != 0) $stop;
if (iface2.x[1] != 0) $stop;
foo.update(iface2);
clockSome();
if (iface.x[0] != 8) $stop;
if (iface.x[1] != 0) $stop;
if (iface2.x[0] != 0) $stop;
if (iface2.x[1] != 0) $stop;
bar.update(foo2);
clockSome();
if (iface.x[0] != 8) $stop;
if (iface.x[1] != 0) $stop;
if (iface2.x[0] != 0) $stop;
if (iface2.x[1] != 0) $stop;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
|