Código
Estoy usando el programa de Active- HDL versión estudiante
------------------------------------------------------------------------------- -- -- Title : demux -- Design : 3º practica -- Author : Manuel -- Company : Torca -- ------------------------------------------------------------------------------- -- -- File : demux.vhd -- Generated : Wed Oct 9 01:32:38 2013 -- From : interface description file -- By : Itf2Vhdl ver. 1.22 -- ------------------------------------------------------------------------------- -- -- Description : -- ------------------------------------------------------------------------------- --{{ Section below this comment is automatically maintained -- and may be overwritten --{entity {demux} architecture {demux}} library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.std_logic_unsigned.all entity demux is port( D : in STD_LOGIC; S : in STD_LOGIC; Z0 : out STD_LOGIC; Z1 : out STD_LOGIC ); end demux; --}} End of automatically maintained section architecture demux of demux is begin -- enter your statements here -- process(D,S) begin example: if S='0' then Z0<=D; else Z1<=D; end if; end process; end demux;
El error que me da es el siguiente:
Código:
# Error: VLM_0040: VHDL unit cannot be compiled as the target library name is not a legal VHDL identifier.
Gracias por la ayuda