Você está na página 1de 1

entity prueba is

port
(
-- Input ports
a,b,c : in bit;
-- Output ports
sega : out bit
);
end prueba;-- Library Clause(s) (optional)
-- Use Clause(s) (optional)
architecture digital of prueba is
begin
sega <= (not(a) or b)and c;
end digital;

Você também pode gostar