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