aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/pyunit/SimplePackage.vhdl11
1 files changed, 1 insertions, 10 deletions
diff --git a/testsuite/pyunit/SimplePackage.vhdl b/testsuite/pyunit/SimplePackage.vhdl
index 0b93adf96..0571e7060 100644
--- a/testsuite/pyunit/SimplePackage.vhdl
+++ b/testsuite/pyunit/SimplePackage.vhdl
@@ -3,20 +3,11 @@ use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
package pack_1 is
- constant const_1 : boolean;
+ constant const_1 : boolean := false;
- type matrix is array(natural range <>, natural range <>) of std_logic;
-
- subtype matrix8x8 is matrix(7 downto 0, 7 downto 0);
-
- function func1(value : unsigned) return natural;
end package;
package body pack_1 is
constant const_1 : boolean := true;
- function func1(value : unsigned) return natural is
- begin
- return to_integer(value);
- end function;
end package body;