aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/upf/upf-body.vhdl
blob: 039299bfc1a5ad3f70fa6ba06119ffe201ba32e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package body upf is

  function supply_on (
    constant supply_name : string;
    constant voltage     : real)
    return boolean is
  begin
    return true;
  end supply_on;

  function supply_partial_on (
    constant supply_name : string;
    constant voltage     : real)
    return boolean is
  begin
    return true;
  end supply_partial_on;

  function supply_off (
    constant supply_name : string)
    return boolean is
  begin
    return true;
  end supply_off;

end upf;