blob: 82418a0d277cef2942559120eea64317b5e4ce3b [file] [log] [blame]
module tb_functions;
function myfunction;
input a, b, c, d;
begin
myfunction = ((a+b) + (c-d));
end
endfunction
endmodule