Com relação à linguagem VHDL, julgue o próximo item.
As formas de onda abaixo são uma simulação funcional válida da entidade “teste”, definida pelo código VHDL que se segue.

entity teste is
port ( q: out bit; x, y, clk: in bit;);
end teste;
architecture a of teste is
signal tmp : bit;
begin
tmp <= x nand y;
process (clk) begin
if (clk'event and clk='1') then q<=tmp;
end if;
end process;
end a;
Provas
Questão presente nas seguintes provas
Tecnologista Sr. - Projeto de Circuitos Integrados
120 Questões