diff options
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; |