2022-01-02 15:43:26 +01:00
// DESCRIPTION: Verilator: Verilog Test module
//
2026-01-27 02:24:34 +01:00
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2022 Wilson Snyder
2022-01-02 15:43:26 +01:00
// SPDX-License-Identifier: CC0-1.0
2026-03-08 23:26:40 +01:00
// verilog_format: off
2024-02-09 00:39:13 +01:00
`define stop $stop
`define checkh(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", `__FILE__,`__LINE__, (gotv), (expv)); `stop; end while(0);
2026-03-08 23:26:40 +01:00
// verilog_format: on
2022-01-02 15:43:26 +01:00
package Pkg ;
2026-03-08 23:26:40 +01:00
class Cls ;
int c_no = 2 ;
//automatic int c_au = 2; // automatic not a legal keyword here
static int c_st = 22 ;
function int f_c_no ( ) ;
+ + c_no ;
return c_no ;
endfunction
function int f_c_st ( ) ;
+ + c_st ;
return c_st ;
endfunction
static function int f_cs_st ( ) ;
+ + c_st ;
return c_st ;
endfunction
endclass
2022-01-02 15:43:26 +01:00
endpackage
2025-09-13 15:28:43 +02:00
module t ;
2022-01-02 15:43:26 +01:00
2026-03-08 23:26:40 +01:00
Pkg : : Cls a = new ;
Pkg : : Cls b = new ;
int v ;
initial begin
v = a . f_c_no ( ) ;
`checkh ( v , 3 ) ;
v = a . f_c_no ( ) ;
`checkh ( v , 4 ) ;
v = b . f_c_no ( ) ;
`checkh ( v , 3 ) ;
v = b . f_c_no ( ) ;
`checkh ( v , 4 ) ;
v = a . f_c_st ( ) ;
`checkh ( v , 23 ) ;
v = a . f_c_st ( ) ;
`checkh ( v , 24 ) ;
v = b . f_c_st ( ) ;
`checkh ( v , 25 ) ;
v = b . f_c_st ( ) ;
`checkh ( v , 26 ) ;
//
v = Pkg : : Cls : : f_cs_st ( ) ;
`checkh ( v , 27 ) ;
$write ( " *-* All Finished *-* \n " ) ;
$finish ;
end
2022-01-02 15:43:26 +01:00
endmodule