shaiko
Advanced Member level 5
- Joined
- Aug 20, 2011
- Messages
- 2,644
- Helped
- 303
- Reputation
- 608
- Reaction score
- 297
- Trophy points
- 1,363
- Activity points
- 18,302
Code:
signal x : std_logic_vector ( 31 downto 0 ) ;
signal y : std_logic_vector ( 31 downto 0 ) ;
signal nibble: std_logic_vector ( 2 downto 0 ) ;
nibble <= x ( 30 downto 28 ) ;
y <= ( 30 downto 28 => nibble , others => 'Z' ) ; -- compilation fails on this line
"Expression does not match type std_ulogic"
Why?