Files
psi-tp4/traffic_light.vhdl
Tiago Batista Cardoso 4fc2f8b563 first
2025-12-21 11:07:04 +01:00

27 lines
450 B
VHDL

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;