This commit is contained in:
Tiago Batista Cardoso
2025-12-21 11:07:04 +01:00
commit 4fc2f8b563
6 changed files with 228 additions and 0 deletions

26
traffic_light.vhdl Normal file
View File

@@ -0,0 +1,26 @@
library ieee;
use ieee.std_logic_arith.all;
use ieee.std_logic_1164.all;
entity traffic_light is
port (
rst,
clk : in std_logic;
red,
orange,
green : out std_logic
);
end entity traffic_light;
architecture V1 of traffic_light is
component tick1s is
port (
rst,
clk : in std_logic;
output : out std_logic
);
end component;
begin
end architecture V1;