Can u send me vhdl programs

Status
Not open for further replies.

BHAR

Newbie level 1
Joined
Aug 28, 2011
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,288
Can u send me vhdl programs for parallel to serial convertor and vice versa
 

check this.. it has sample programs...
**broken link removed**
 
can you post/mail me vhdl code for pn sequence generation....roopab82@gmail.com
 

Can u send me vhdl programs for parallel to serial convertor and vice versa

process (<clock>)
begin
if <clock>'event and <clock>='1' then
<tmp_sig> <= <tmp_sig>(<width>-2 downto 0) & <input>;
elsif <load_enable> = '1' then
<tmp_sig> <= <load_data>;
end if;
end process;
<output> <= <tmp_sig>(<width>-1);


**broken link removed** --> pn sequence
 

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…