Home
last modified time | relevance | path

Searched refs:baseover (Results 1 – 1 of 1) sorted by relevance

/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_class_extends1.v9 int baseover; register in Base0
11 function void b_set_bo(int v); baseover = v; endfunction
12 function int b_get_bo(); return baseover; endfunction
13 function int get_bo(); return baseover; endfunction
17 int baseover; register in Ext
20 function void e_set_bo(int v); baseover = v; endfunction
21 function int e_get_bo(); return baseover; endfunction
22 function int get_bo(); return baseover; endfunction
30 c.baseover = 20;
33 if (c.baseover != 20) $stop;