diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-01-16 08:35:38 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-01-16 13:53:13 +0100 |
commit | e5c609f31d485dcb5796103d5b8b0cf332960070 (patch) | |
tree | 40aae76e24c05da8aad0f93d63d72fe5b6cdee0d /libraries/upf/upf.vhdl | |
parent | 173171d2b31111452446c6ee3e4ee21768cf41cf (diff) | |
download | ghdl-e5c609f31d485dcb5796103d5b8b0cf332960070.tar.gz ghdl-e5c609f31d485dcb5796103d5b8b0cf332960070.tar.bz2 ghdl-e5c609f31d485dcb5796103d5b8b0cf332960070.zip |
libraries: unuse 'openieee', rename enable_openieee to enable_gplcompat
Diffstat (limited to 'libraries/upf/upf.vhdl')
-rw-r--r-- | libraries/upf/upf.vhdl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libraries/upf/upf.vhdl b/libraries/upf/upf.vhdl new file mode 100644 index 000000000..974798331 --- /dev/null +++ b/libraries/upf/upf.vhdl @@ -0,0 +1,19 @@ +-- modelled according to IEEE Std 1801-2015, 11.2 + +package upf is + + function supply_on ( + constant supply_name : string; + constant voltage : real) + return boolean; + + function supply_partial_on ( + constant supply_name : string; + constant voltage : real) + return boolean; + + function supply_off ( + constant supply_name : string) + return boolean; + +end upf; |