need a help in vhdl code developing

P

pavani_19

Guest
hi everyone,
I am trying to develop a vhdl code for 8 bit shift register with input
as parallel input and serial output.can anyone help me with the code
please.its urgent.thank you
 
Still having trouble with your homework?
<http://groups.google.com/group/comp.lang.vhdl/browse_thread/thread/cd375357870b6881/10e3fabb23a66524>
 
Shift register: You need to read basic shift register operation.
refer any good book on digital sequential logic design.

Next you need to understand basic component implementation using
VHDL(Flip flop etc.)

Then try to realize the shift register functionality which you have
read.

A simple shift register can be implemented as

..
..
..
..
regs(7 downto 1)<=regs(6 downto 0);
regs(0)<=input;

..
..
..

put this under clock event and add yoprlogic.

This is a one method there are several other.

Try to explore on youir own so that you will learn fast.
 

Welcome to EDABoard.com

Sponsor

Back
Top