Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
6ce6840a96fc0d4401dbc401b0aecc29d7234654
/
.
/
SVIncCompil
/
Testcases
/
UtdSV
/
simple_task.v
blob: 6a2458a0c519fd797f20cdbdc6465c3c463c0f07 [
file
]
module
simple_task
();
task convert
;
input
[
7
:
0
]
temp_in
;
output
[
7
:
0
]
temp_out
;
begin
temp_out
=
(
9
/
5
)
*(
temp_in
+
32
);
end
endtask
endmodule