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/openieee | |
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/openieee')
-rw-r--r-- | libraries/openieee/upf-body.vhdl | 26 | ||||
-rw-r--r-- | libraries/openieee/upf.vhdl | 19 |
2 files changed, 0 insertions, 45 deletions
diff --git a/libraries/openieee/upf-body.vhdl b/libraries/openieee/upf-body.vhdl deleted file mode 100644 index 039299bfc..000000000 --- a/libraries/openieee/upf-body.vhdl +++ /dev/null @@ -1,26 +0,0 @@ -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; diff --git a/libraries/openieee/upf.vhdl b/libraries/openieee/upf.vhdl deleted file mode 100644 index 974798331..000000000 --- a/libraries/openieee/upf.vhdl +++ /dev/null @@ -1,19 +0,0 @@ --- 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; |