aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/examples/comments/func_param.vhdl
blob: fb47687e5f0a5730a59b1af4cc7d6de83c85abff (plain)
1
2
3
4
5
6
7
8
9
package p is
  function log2(
    -- :param1: we also want to document parameters too
    param1 : integer;
    param2 : boolean
    ) return natural;
end p;