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, 2020 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
class ClsNoArg;
const int imembera; // Ok for new() to assign to a const
function new();
int other = other_func();
imembera = 5;
if (other != 6) $stop;
endfunction : new
class InnerNoArg;
const int imembera;
function new();
int other = other_func();
imembera = 5;
if (other != 6) $stop;
endfunction
function int other_func();
return 6;
endfunction
endclass
function int other_func();
return 6;
endfunction
endclass
class ClsArg;
int imembera;
function new(int i);
imembera = i + 1;
endfunction
function int geta;
return imembera;
endfunction
static function ClsArg create6;
ClsArg obj;
obj = new(6 - 1);
return obj;
endfunction
endclass
class Cls2Arg;
int imembera;
int imemberb;
function new(int i, int j);
imembera = i + 1;
imemberb = j + 2;
endfunction
function Cls2Arg clone();
Cls2Arg ret;
ret = new(imembera, imemberb);
return ret;
endfunction
endclass
module t (/*AUTOARG*/);
initial begin
ClsNoArg c1;
ClsArg c2;
Cls2Arg c3;
Cls2Arg c4;
ClsNoArg::InnerNoArg c5 = new;
c1 = new;
if (c1.imembera != 5) $stop;
c2 = new(3 - 1);
if (c2.imembera != 3) $stop;
if (c2.geta() != 3) $stop;
c2 = ClsArg::create6();
if (c2.imembera != 6) $stop;
if (c2.geta() != 6) $stop;
c3 = new(4, 5);
if (c3.imembera != 5) $stop;
if (c3.imemberb != 7) $stop;
c4 = c3.clone();
if (c4.imembera != 6) $stop;
if (c4.imemberb != 9) $stop;
c5 = new;
if (c5.imembera != 5) $stop;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
|