Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top