Register⚓
Simple register⚓
Here is one example of a register with synchronous init and enable. Whenever the init input is high and there is a rising edge of the clock, the value stored in the O_S
signal will be set to "00000000"
. When the init is low, the load is high and there is a rising edge of the clock, the O_S
signal will be set to the value present in I_D
.
Register with **Synchronous** Reset | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
A register can be seen as a row of flip-flop, each one storing a bit of the signal (8 bits here).
Shift register⚓
Here is one example of a shift register with a parallel load.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
The shift can be done the same way with arrays.