blob: 200ec12d0283b411c11d1ade9b4621b9954a7547 [file] [log] [blame]
/*
:name: dist_normal_function
:description: $dist_normal test
:should_fail: 0
:tags: 20.15
:type: simulation parsing
*/
module top();
initial begin
integer seed = 1234;
$display("%d", $dist_normal(seed, 0, 100));
end
endmodule