nick123
Member level 2
- Joined
- Aug 16, 2014
- Messages
- 53
- Helped
- 3
- Reputation
- 8
- Reaction score
- 3
- Trophy points
- 8
- Activity points
- 334
Code VHDL - [expand] 1 2 3 4 5 6 7 8 9 entity MY_PROG is port( Real : in std_logic_vector (31 downto 0); Imag : in std_logic_vector (31 downto 0); Realo : out std_logic_vector (31 downto 0); Imago : out std_logic_vector (31 downto 0); clk, Request: in std_logic; ); end MY_PROG ;
Is this valid to use "real" as a input port list in the entity as its predefined in vhdl.
Last edited by a moderator: