You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
312 B

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
ENTITY Sequenceur_vhdl is
port(
H, BP1, BP2: in std_logic;
Count, Reset: out std_logic
);
END;
ARCHITECTURE Sequenceur_vhdl of Sequenceur_vhdl is
BEGIN
PROCESS(H)