aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-29 23:18:42 +0100
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-29 23:18:42 +0100
commit7ae0931d3e6733ceb76f1d884e282d7d6b5fb489 (patch)
tree02975f7b7ce0170dd608d694f714bb873adcd37d /testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl
parent9cf69f324186932e4308e1ca0b19f563dab90e5e (diff)
downloadghdl-7ae0931d3e6733ceb76f1d884e282d7d6b5fb489.tar.gz
ghdl-7ae0931d3e6733ceb76f1d884e282d7d6b5fb489.tar.bz2
ghdl-7ae0931d3e6733ceb76f1d884e282d7d6b5fb489.zip
Improved VHDL example project.
Diffstat (limited to 'testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl')
-rw-r--r--testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl b/testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl
index e15048dcf..6231261c0 100644
--- a/testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl
+++ b/testsuite/pyunit/dom/examples/StopWatch/Utilities.pkg.vhdl
@@ -30,6 +30,21 @@ package Utilities_pkg is
function to_index(value : unsigned; max : positive) return natural;
function to_index(value : natural; max : positive) return natural;
+
+ component Debouncer is
+ generic (
+ CLOCK_PERIOD : time := 10 ns;
+ DEBOUNCE_TIME : time := 3 ms;
+
+ BITS : positive
+ );
+ port (
+ Clock : in std_logic;
+
+ Input : in std_logic_vector(BITS - 1 downto 0);
+ Output : out std_logic_vector(BITS - 1 downto 0) := (others => '0')
+ );
+ end component;
end package;