I have this circuit that I want to implement in vhdl. There is a clock input and which clock event changes the 1
pin output sequentially. 0001 -> 0010 -> 0100 -> 1000 ...
I wondering what is the correct approach to do that. I could do that with multiple ifs and elsifs and an integer counter signal. Sorry for the noob question, is there a name for this kind of circuit?
It appears from your description this intended to be a ring counter. Your gates seem superfluous:
With a test bench:
Gives:
While a classic ring counter:
(and modified test bench):
gives:
And the starting phase is all in the initial condition.