Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-20
/
20.15--dist_exponential.sv
blob: 11efbd8066ce094dcf06f654d72d3121246e6a9e [
file
]
/*
:name: dist_exponential_function
:description: $dist_exponential test
:should_fail: 0
:tags: 20.15
:type: simulation parsing
*/
module
top
();
initial
begin
integer seed
=
1234
;
$display
(
"%d"
,
$dist_exponential
(
seed
,
100
));
end
endmodule