Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
a50fc0da15e88d7b685f92dc843d3d71b716c8a4
/
.
/
src
/
Testcases
/
Google
/
chapter-20
/
20.15--dist_normal.sv
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