Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-20
/
20.15--random.sv
blob: ccf00f67d132bc07ec377515789f88bbd1ace4be [
file
] [
log
] [
blame
]
/*
:name: random_function
:description: $random test
:should_fail: 0
:tags: 20.15
:type: simulation parsing
*/
module
top
();
initial
begin
$display
(
"%d"
,
$random
);
end
endmodule