Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
91c065df031c31bc350c1052607ca347e71c741d
/
.
/
src
/
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