Design Even Number Generator with 4 Bit Counter

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
Nahian
Messages
4
Reaction score
0
how can i design an even number generator with a 4 bit counter without using any flip-flop , Using only 4 bit counter?
 
Engineering news on Phys.org
Left shift one (as anorlunda says) is the same as multiplying by 2, which is the simplest way to create even numbers.

Were you looking for something different than this?

You can write boolean logic equations to develop a circuit that outputs 2 when you input 1, etc, but it will just reduce to a left shift.
 
  • Like
Likes   Reactions: CWatters
Nahian said:
how can i design an even number generator with a 4 bit counter without using any flip-flop , Using only 4 bit counter?
do you mean an even number generator (a counter), or a (psudo) random even number generator (jumps around to different numbers)?

There is a big difference