Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
14189593b2851f86e27e0604e4a37a0d9629aa5c
/
.
/
src
/
Testcases
/
Google
/
chapter-20
/
20.8--atan2.sv
blob: daae2af50839d2354593950cd8249a5143a8be39 [
file
]
/*
:name: atan2_function
:description: $atan2 test
:should_fail: 0
:tags: 20.8
:type: simulation parsing
*/
module
top
();
initial
begin
$display
(
"%f"
,
$atan2
(
2.1
,
3.7
));
end
endmodule