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