Vhdl Program For Parallel In Serial Out Shift Register

  1. Parallel In Serial Out Shift Register
  2. Vhdl Program For Parallel In Serial Out Shift Register
  3. Shift Register
  4. Parallel In Serial Out Register
  5. Parallel In Serial Out Right Shift Register
Active3 years, 1 month ago
$begingroup$

I'm creating an n bit shift register. When the enable signal is high, I want the shift register to shift n times, irrespective of whether enable continues to be high or low. I've put a for loop to shift n times inside a process. My code is given below.

In this lecture, we are going to learn about Package Declaration in VHDL Language. When a component, signal, variable, functions, procedures etc. Occur repetitively in a program then it is better. 1,294 Responses to “Verilog HDL Program for Parallel In – Serial Out Shift Register”.

I don't think the for loop is working, as the shifting is not restricted to n times. Where am I going wrong?

Federico Russo
4,80313 gold badges56 silver badges111 bronze badges
OrangeOrange
$endgroup$

2 Answers

$begingroup$

In VHDL, a for loop executes in zero time. This means that instead of waiting a clock cycle between each iteration, the entire loop is run within one clock cycle, with only the final result of the loop being shown at the end. This is what's happening in your code. The entire loop is executing in a single clock cycle, and the value of s_out is only going to change once - to the value it was when the loop ended, which in this case is s_in shifted by 4.

What you really want is a loop where each iteration occurs on a new clock edge. This allows for s_in to be shifted out of s_out ever clock cycle.

Performing a loop where each iteration occurs on a clock edge does not require a for loop command, instead it takes advantage of the sensitivity list of the process. Here's how:

Parallel In Serial Out Shift Register

A process is triggered every time one of the signals on the sensitivity list ('clk, reset' in this case) changes. This means that the process is already looping every clock cycle (if a clock is in the sensitivity list). You can use this to your advantage in order to perform a for-loop type operation, where every iteration of the loop occurs on a clock cycle.

First you need a counter:

shift_counter keeps track of how many iterations (or shifts) have occurred so far. you'll compare shift_counter to n-1 to see if you're done yet.

Next it might be a good idea to think of the states your process will be in. Perhaps a wait state for when the process is not shifting, and a shifting state for when it is.

The state signal definition:

In the process proper:

Ok, so what happens when we're waiting for an enable? It would be a good idea to set all (driven) variables to a known value. This means that maybe something like this is a good idea:

This is useful to do because then you know exactly what your signal values are when enable goes high. Also, at the end of the shift, you can change states back to 'waiting' in order to get ready for enable again.

So what is going to trigger a state change from waiting to shifting ?That's easy:

Ok, so next state. shifting.

First, we want to increment the shift counter, and perform the actual shift:

And then also detect when the shifting is done, in order to leave the shift state and go back to waiting:

And that's it!

In the below chunk of code, note that the 'reset' state and the 'waiting' state are distinct. This is useful because generally the asynchronous reset only occurs at startup and is not expected to process any data during this time. By moving the temp_reg <= parallel_in to the waiting state (outside of the asynchronous reset), we are allowing the module driving parallel_in to start up correctly without having to send data during reset. Also, now the waiting state can be entered as necessary, without having to perform an asynchronous reset.

Also notice that I'm only driving 3 signals (4 counting the variable) in my process, and only those signals. If a signal is driven in one process, it shouldn't be driven anywhere else but that process. Not outside the process, not in another process. A signal is driven inside one process and one process only. You can compare the signal to other signals in other places (if statements, and such), but don't give the signal a value anywhere except in one process. And generally, it is defined in the reset portion, and then wherever necessary in the process proper. But only 1 process. If I'd been told this, it would have saved me tons of time while I was learning.

Here's the whole code in one chunk:

stanristanri
4,5092 gold badges19 silver badges49 bronze badges
$endgroup$$begingroup$

@stanri's answer is impresively thorough and quite accurate... if I may summarize/clarify the first statement though, the 'for' statement in an HDL simply expresses 'syntactic replication' not 'sequential execution'.

That is to say, it simply generates more hardware elements (gates), and does not inform process flow. I would say the loop is expanded at elaboration time (compilation), not that it 'executes in zero time', after all at runtime there will still be propagation delay through the elements generated by the 'for' construct.

Don't start by writing VHDL code, start by drawing logic schematics (at least at some level of abstraction). At the end of the day HDL is just a text-based way of expressing the content of logic schematics.

Nick Alexeev
33.5k10 gold badges69 silver badges178 bronze badges
vicatcuvicatcu
16.5k8 gold badges63 silver badges134 bronze badges
$endgroup$

protected by CommunityApr 23 '15 at 14:30

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Not the answer you're looking for? Browse other questions tagged vhdlshift-register or ask your own question.

Active3 years, 1 month ago
$begingroup$

I'm creating an n bit shift register. When the enable signal is high, I want the shift register to shift n times, irrespective of whether enable continues to be high or low. I've put a for loop to shift n times inside a process. My code is given below.

I don't think the for loop is working, as the shifting is not restricted to n times. Where am I going wrong?

Federico Russo
4,80313 gold badges56 silver badges111 bronze badges
OrangeOrange
$endgroup$

2 Answers

$begingroup$

In VHDL, a for loop executes in zero time. This means that instead of waiting a clock cycle between each iteration, the entire loop is run within one clock cycle, with only the final result of the loop being shown at the end. This is what's happening in your code. The entire loop is executing in a single clock cycle, and the value of s_out is only going to change once - to the value it was when the loop ended, which in this case is s_in shifted by 4.

What you really want is a loop where each iteration occurs on a new clock edge. This allows for s_in to be shifted out of s_out ever clock cycle.

Performing a loop where each iteration occurs on a clock edge does not require a for loop command, instead it takes advantage of the sensitivity list of the process. Here's how:

A process is triggered every time one of the signals on the sensitivity list ('clk, reset' in this case) changes. This means that the process is already looping every clock cycle (if a clock is in the sensitivity list). You can use this to your advantage in order to perform a for-loop type operation, where every iteration of the loop occurs on a clock cycle.

First you need a counter:

shift_counter keeps track of how many iterations (or shifts) have occurred so far. you'll compare shift_counter to n-1 to see if you're done yet.

Serial

Next it might be a good idea to think of the states your process will be in. Perhaps a wait state for when the process is not shifting, and a shifting state for when it is.

Vhdl Program For Parallel In Serial Out Shift Register

The state signal definition:

In the process proper:

Ok, so what happens when we're waiting for an enable? It would be a good idea to set all (driven) variables to a known value. This means that maybe something like this is a good idea:

This is useful to do because then you know exactly what your signal values are when enable goes high. Also, at the end of the shift, you can change states back to 'waiting' in order to get ready for enable again.

So what is going to trigger a state change from waiting to shifting ?That's easy:

Ok, so next state. shifting.

First, we want to increment the shift counter, and perform the actual shift:

And then also detect when the shifting is done, in order to leave the shift state and go back to waiting:

And that's it!

In the below chunk of code, note that the 'reset' state and the 'waiting' state are distinct. This is useful because generally the asynchronous reset only occurs at startup and is not expected to process any data during this time. By moving the temp_reg <= parallel_in to the waiting state (outside of the asynchronous reset), we are allowing the module driving parallel_in to start up correctly without having to send data during reset. Also, now the waiting state can be entered as necessary, without having to perform an asynchronous reset.

Also notice that I'm only driving 3 signals (4 counting the variable) in my process, and only those signals. If a signal is driven in one process, it shouldn't be driven anywhere else but that process. Not outside the process, not in another process. A signal is driven inside one process and one process only. You can compare the signal to other signals in other places (if statements, and such), but don't give the signal a value anywhere except in one process. And generally, it is defined in the reset portion, and then wherever necessary in the process proper. But only 1 process. If I'd been told this, it would have saved me tons of time while I was learning.

Here's the whole code in one chunk:

stanristanri
4,5092 gold badges19 silver badges49 bronze badges
$endgroup$$begingroup$

@stanri's answer is impresively thorough and quite accurate... if I may summarize/clarify the first statement though, the 'for' statement in an HDL simply expresses 'syntactic replication' not 'sequential execution'.

That is to say, it simply generates more hardware elements (gates), and does not inform process flow. I would say the loop is expanded at elaboration time (compilation), not that it 'executes in zero time', after all at runtime there will still be propagation delay through the elements generated by the 'for' construct.

Don't start by writing VHDL code, start by drawing logic schematics (at least at some level of abstraction). At the end of the day HDL is just a text-based way of expressing the content of logic schematics.

Nick Alexeev
33.5k10 gold badges69 silver badges178 bronze badges

Shift Register

vicatcuvicatcu
16.5k8 gold badges63 silver badges134 bronze badges
$endgroup$

protected by CommunityApr 23 '15 at 14:30

Parallel In Serial Out Register

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Parallel In Serial Out Right Shift Register

Not the answer you're looking for? Browse other questions tagged vhdlshift-register or ask your own question.