diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-29 23:18:42 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-29 23:18:42 +0100 |
commit | 7ae0931d3e6733ceb76f1d884e282d7d6b5fb489 (patch) | |
tree | 02975f7b7ce0170dd608d694f714bb873adcd37d /testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl | |
parent | 9cf69f324186932e4308e1ca0b19f563dab90e5e (diff) | |
download | ghdl-7ae0931d3e6733ceb76f1d884e282d7d6b5fb489.tar.gz ghdl-7ae0931d3e6733ceb76f1d884e282d7d6b5fb489.tar.bz2 ghdl-7ae0931d3e6733ceb76f1d884e282d7d6b5fb489.zip |
Improved VHDL example project.
Diffstat (limited to 'testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl')
-rw-r--r-- | testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl b/testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl index 1a40718aa..f67f99c72 100644 --- a/testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl +++ b/testsuite/pyunit/dom/examples/StopWatch/StopWatch.pkg.vhdl @@ -18,4 +18,16 @@ package StopWatch_pkg is end record; type T_STOPWATCH_CONFIGURATION is array(natural range <>) of T_DIGIT_CONFIGURATION; + + -- Encoder that translates from 4-bit binary (BCD) to 7-segment code. + -- + -- In addition, an optional dot input is supported. + component seg7_Encoder is + port ( + BCDValue : in T_BCD; + Dot : in std_logic := '0'; + + Seg7Code : out std_logic_vector(7 downto 0) + ); + end component; end package; |