Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
b2c8950dbc163e2320c742c5badef8d829b836c0
/
.
/
SVIncCompil
/
Testcases
/
UtdSV
/
functions.v
blob: 82418a0d277cef2942559120eea64317b5e4ce3b [
file
]
module
tb_functions
;
function
myfunction
;
input a
,
b
,
c
,
d
;
begin
myfunction
=
((
a
+
b
)
+
(
c
-
d
));
end
endfunction
endmodule