mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-07 11:51:38 +02:00
By adding ivtest to the iverilog source tree, it is easier to keep the regression test synchronized with the source that is being tested. This should be especially helpful for PRs that add a new feature, and have a matching ivtest PR with the regression test for that feature.
26 lines
420 B
Verilog
26 lines
420 B
Verilog
// This will not generate a RE if these are calling the correct warning.
|
|
module top;
|
|
integer res;
|
|
|
|
initial begin
|
|
// $countdrivers is now implemented
|
|
res = $getpattern;
|
|
$input;
|
|
$key;
|
|
$nokey;
|
|
$list;
|
|
$log;
|
|
$nolog;
|
|
$save;
|
|
$restart;
|
|
$incsave;
|
|
res = $scale;
|
|
$scope;
|
|
$showscopes;
|
|
$showvars;
|
|
$sreadmemb;
|
|
$sreadmemh;
|
|
$display("PASSED");
|
|
end
|
|
endmodule
|