Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5fc392ff83ea0acf652bc53330a76f269601c5b5
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-20
/
20.8--sqrt.sv
blob: d746dfce9c9b58fdfe9cd6d7d877417c6fdf1feb [
file
]
/*
:name: sqrt_function
:description: $sqrt test
:should_fail: 0
:tags: 20.8
:type: simulation parsing
*/
module
top
();
initial
begin
$display
(
":assert: (%d == 3)"
,
$sqrt
(
9
));
end
endmodule