Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-20
/
20.15--dist_exponential.sv
blob: 11efbd8066ce094dcf06f654d72d3121246e6a9e [
file
] [
log
] [
blame
]
/*
: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