bibliothèque IEEE ;
utilisez IEEE.STD_LOGIC_1164.all ;
l'entité AND_gate est
port (
R :dans STD_LOGIC ;
B :dans STD_LOGIC ;
Y :sortie STD_LOGIC
);
fin AND_gate ;
L'architecture comportementale de AND_gate est
commencer
Y <=A et B ;
fin comportementale ;
```