This commit is contained in:
filipriec skolsky PC
2026-03-09 14:04:49 +01:00
parent 7546081aaf
commit ab832ecd86
5 changed files with 429 additions and 2 deletions

View File

@@ -0,0 +1,73 @@
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 09.03.2026 13:12:16
-- Design Name:
-- Module Name: counter - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--use IEEE.NUMERIC_STD.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx leaf cells in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity counter is
Port ( CLK : in STD_LOGIC;
RST : in STD_LOGIC;
CE : in STD_LOGIC;
TC : out STD_LOGIC;
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
end counter;
architecture Behavioral of counter is
-- Internal signal to keep track of the current number
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
begin
-- Main counting logic
process(CLK)
begin
if rising_edge(CLK) then
if RST = '1' then
s_cnt <= "0000";
elsif CE = '1' then
if s_cnt = "1001" then -- If we are at 9
s_cnt <= "0000"; -- Reset to 0
else
s_cnt <= s_cnt + 1; -- Increment
end if;
end if;
end if;
end process;
-- Terminal Count logic (The red line connection)
-- TC is '1' ONLY when we are at 9 AND the enable pulse is active.
-- This ensures the next counter only moves once per rollover.
TC <= '1' when (s_cnt = "1001" and CE = '1') else '0';
-- Drive the output ports
COUNT_OUT <= s_cnt;
end Behavioral;

View File

@@ -0,0 +1,62 @@
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 09.03.2026 13:19:27
-- Design Name:
-- Module Name: divider - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--use IEEE.NUMERIC_STD.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx leaf cells in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity divider is
Port ( CLK : in STD_LOGIC;
RST : in STD_LOGIC;
CLK_1_Hz : out STD_LOGIC);
end divider;
architecture Behavioral of divider is
-- We need a 27-bit signal to hold the number 100,000,000
signal s_cnt : STD_LOGIC_VECTOR(26 downto 0) := (others => '0');
begin
process(CLK)
begin
if rising_edge(CLK) then
if RST = '1' then
s_cnt <= (others => '0');
CLK_1_Hz <= '0';
elsif s_cnt = 99_999_999 then -- One second has passed
s_cnt <= (others => '0');
CLK_1_Hz <= '1'; -- Send one single 'high' pulse
else
s_cnt <= s_cnt + 1;
CLK_1_Hz <= '0'; -- Stay low otherwise
end if;
end if;
end process;
end Behavioral;

View File

@@ -0,0 +1,95 @@
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 09.03.2026 13:07:50
-- Design Name:
-- Module Name: top_modul - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--use IEEE.NUMERIC_STD.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx leaf cells in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity top_modul is
Port ( CLK : in STD_LOGIC;
RST : in STD_LOGIC;
START_PAUSE : in STD_LOGIC;
LED_UNITS : out STD_LOGIC_VECTOR (3 downto 0);
LED_TENS : out STD_LOGIC_VECTOR (3 downto 0));
end top_modul;
architecture Behavioral of top_modul is
-- 1. Component Declarations
component divider is
Port ( CLK : in STD_LOGIC;
RST : in STD_LOGIC;
CLK_1_Hz : out STD_LOGIC); -- This will be our enable pulse
end component;
component counter is
Port ( CLK : in STD_LOGIC;
RST : in STD_LOGIC;
CE : in std_logic;
TC : out std_logic; -- Terminal Count for cascading
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
end component;
-- 2. Internal "Wires"
signal s_1hz_tick : std_logic;
signal s_tc_units : std_logic;
begin
-- 3. Block Instantiation & Wiring
U_DIV : divider
port map (
CLK => CLK,
RST => RST,
CLK_1_Hz => s_1hz_tick
);
-- Units Counter (First CNT in diagram)
U_CNT_UNITS : counter
port map (
CLK => CLK,
RST => RST,
CE => (s_1hz_tick and START_PAUSE), -- Input from DIV + Switch
TC => s_tc_units, -- Output to next counter
COUNT_OUT => LED_UNITS
);
-- Tens Counter (Second CNT in diagram)
U_CNT_TENS : counter
port map (
CLK => CLK,
RST => RST,
-- Increments ONLY when Units rolls over (TC) AND 1Hz pulse is there
CE => s_tc_units,
TC => open, -- We don't need TC for the last digit
COUNT_OUT => LED_TENS
);
end Behavioral;