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