Petr Nohavica
Results
2
issues of
Petr Nohavica
See #6036 . It has all boiled down to Verilator using virtual inheritance for _everything_ - it should rather keep non-virtual inheritance for the "extends" cases and virtual only for...
```systemverilog `define stop $stop `define checkh(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got=%0x exp=%0x (%s !== %s)\n", `__FILE__,`__LINE__, (gotv), (expv), `"gotv`", `"expv`"); `stop; end while(0); `define checks(gotv,expv) do...