FixitFast
Junior Member level 2
- Joined
- Feb 6, 2013
- Messages
- 20
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,462
Hello every one.
The two codes are below
the other is
I suppose the final implementaion + logical operation for both should be exactly same ?
Any idea?
The two codes are below
Code:
if(valid_shift_HIGH = '1') then
if(buff_2Sn_empty = '0' and buff_2Sn_1_empty = '0') then
rden_buff2 <= '1';
else
rden_buff2 <= '0';
end if;
else
rden_buff2 <= '0';
end if;
the other is
Code:
rden_buff2 <= valid_shift_HIGH and (not buff_2Sn_empty and not buff_2Sn_1_empty);
I suppose the final implementaion + logical operation for both should be exactly same ?
Any idea?