-- ...jugando con wait!
- Declaración de la entidad
Entity jW is
port (a: in bit;
x, y, z: out bit);end jW ;
-- Definición de la arquitectura
Architecture logica of jW isbegin
p1: process
beginx <= not (a);
wait on a;end process;
p2: process
beginwait on a;
y <= not (a);end process;
p3: process
beginz <= not (a);
wait until a='1' for 10 ns;end process;
end logica;