Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5484a5d090fa1d5c765545ffc9a0772418211879
/
.
/
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