emanuelcsm
Member level 3
- Joined
- Feb 15, 2005
- Messages
- 61
- Helped
- 7
- Reputation
- 14
- Reaction score
- 1
- Trophy points
- 1,288
- Location
- Brasil
- Activity points
- 1,801
Hi, I have the program described bellow:
entity PPSPI is
Port ( CLK_IN : in std_logic;
DATA_IN : in std_logic;
CLK_OUT : in std_logic;
DATA_OUT : out std_logic;
FRAME_SYNC : in std_logic;
IMP : out std_logic_vector (12 downto 0);
SW : in std_logic_vector (2 downto 0));
end PPSPI;
I need to put a default value for the output signals, how can I do it?
Thanks.
entity PPSPI is
Port ( CLK_IN : in std_logic;
DATA_IN : in std_logic;
CLK_OUT : in std_logic;
DATA_OUT : out std_logic;
FRAME_SYNC : in std_logic;
IMP : out std_logic_vector (12 downto 0);
SW : in std_logic_vector (2 downto 0));
end PPSPI;
I need to put a default value for the output signals, how can I do it?
Thanks.