Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1c596881d1a7fc4baa7972b1f16b2e3d461aa200
/
.
/
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