Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
UtdSV
/
simple_task.v
blob: 6a2458a0c519fd797f20cdbdc6465c3c463c0f07 [
file
] [
log
] [
blame
]
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